tfix bug in mki18n.py - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 9a0d6bc674228fd5a983c551a504a2c3e4d6e7cd DIR parent 49945a3bce888003c0abbe356908c9d5f50e30bc HTML Author: thomasv <thomasv@gitorious> Date: Mon, 25 Nov 2013 15:07:27 +0100 fix bug in mki18n.py Diffstat: M mki18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/mki18n.py b/mki18n.py t@@ -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