Browse Source

fix bug in mki18n.py

283
thomasv 11 years ago
parent
commit
9a0d6bc674
  1. 2
      mki18n.py

2
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

Loading…
Cancel
Save