X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b23e0f70b3b0e6815b784f29cbe7d09982116c41..d18113ea974703c0c6fc0396e83dbf59bc9e5b26:/lib/python/Components/DreamInfoHandler.py diff --git a/lib/python/Components/DreamInfoHandler.py b/lib/python/Components/DreamInfoHandler.py index 6004e1f3..6cf3b004 100755 --- a/lib/python/Components/DreamInfoHandler.py +++ b/lib/python/Components/DreamInfoHandler.py @@ -50,8 +50,10 @@ class InfoHandler(xml.sax.ContentHandler): prerequisites[name].append(str(attrs["type"])) if name == "info": + self.foundTranslation = None + self.data = "" if not attrs.has_key("language"): - self.printError(str(name) + " tag with no language attribute") + print "info tag with no language attribute" else: if attrs["language"] == 'en': # read default translations self.foundTranslation = False @@ -59,9 +61,6 @@ class InfoHandler(xml.sax.ContentHandler): elif attrs["language"] == self.language: self.foundTranslation = True self.data = "" - else: - self.foundTranslation = None - self.data = "" if name == "files": if attrs.has_key("type"):