diff options
Diffstat (limited to 'lib/python')
| -rwxr-xr-x | lib/python/Components/DreamInfoHandler.py | 7 |
1 files changed, 3 insertions, 4 deletions
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"): |
