commit 9a0d6bc674228fd5a983c551a504a2c3e4d6e7cd
parent 49945a3bce888003c0abbe356908c9d5f50e30bc
Author: thomasv <thomasv@gitorious>
Date: Mon, 25 Nov 2013 15:07:27 +0100
fix bug in mki18n.py
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mki18n.py b/mki18n.py
@@ -52,7 +52,7 @@ for name in zfobj.namelist():
# Convert .po to .mo
print 'Installing'
for lang in os.listdir('./locale'):
- if name.startswith('messages'):
+ if lang.startswith('messages'):
continue
# Check LC_MESSAGES folder
mo_dir = 'locale/%s/LC_MESSAGES' % lang