no need to print the progress while msgmerge'ing

This commit is contained in:
Yann Leboulanger 2005-06-02 10:21:44 +00:00
parent 479f67a229
commit 872ad1fc68
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def visit(arg, dirname, names):
path_to_po = os.path.join(dirname, 'gajim.po')
pos = path_to_po.find('po/') + 3 #3 = len('po/')
name = path_to_po[pos:pos+2]
os.system('msgmerge -U ../po/'+name+'/LC_MESSAGES/gajim.po ../gajim.pot')
os.system('msgmerge -q -U ../po/'+name+'/LC_MESSAGES/gajim.po ../gajim.pot')
print name, 'has now:'
os.system('msgfmt --statistics ' + path_to_po)