Candidate fix for LP #234274

This commit is contained in:
Chris Jones 2008-06-04 00:55:04 +01:00
parent 0d1f5ce4ff
commit cd9233d09f
1 changed files with 1 additions and 2 deletions

View File

@ -41,8 +41,7 @@ class BuildData(build):
if newer(po, mo):
cmd = 'msgfmt -o %s %s' % (mo, po)
info('compiling %s -> %s' % (po, mo))
if os.system(cmd) != 0:
raise SystemExit('Error while running msgfmt')
os.system(cmd)
class InstallData(install_data):