remove this mistake

This commit is contained in:
Chris Jones 2008-06-11 00:35:53 +01:00
parent a1859db459
commit e8738dccd6
1 changed files with 2 additions and 4 deletions

View File

@ -41,10 +41,8 @@ class BuildData(build):
if newer(po, mo):
cmd = 'msgfmt -o %s %s' % (mo, po)
info('compiling %s -> %s' % (po, mo))
try:
os.system(cmd)
except:
pass
os.system(cmd)
class InstallData(install_data):
def run (self):