summaryrefslogtreecommitdiff
path: root/l10ntools/scripts/po2lo
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/scripts/po2lo')
-rwxr-xr-xl10ntools/scripts/po2lo2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/scripts/po2lo b/l10ntools/scripts/po2lo
index a815739fb893..9fc93d632263 100755
--- a/l10ntools/scripts/po2lo
+++ b/l10ntools/scripts/po2lo
@@ -103,12 +103,12 @@ class Translations:
"""Represents a set of .po files, containing translations."""
def __init__(self):
- key = None
self.data = {}
for root, dirs, files in os.walk(options.input):
for file in files:
path = "%s/%s" % (root, file)
sock = xopen(path, "r", encoding='utf-8')
+ key = None
buf = []
multiline = False
fuzzy = False