fix bug in mki18n.py

This commit is contained in:
thomasv 2013-11-25 15:07:27 +01:00
parent 49945a3bce
commit 9a0d6bc674
1 changed files with 1 additions and 1 deletions

View File

@ -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