Candidate fix for LP #234274
This commit is contained in:
parent
0d1f5ce4ff
commit
cd9233d09f
3
setup.py
3
setup.py
|
@ -41,8 +41,7 @@ class BuildData(build):
|
||||||
if newer(po, mo):
|
if newer(po, mo):
|
||||||
cmd = 'msgfmt -o %s %s' % (mo, po)
|
cmd = 'msgfmt -o %s %s' % (mo, po)
|
||||||
info('compiling %s -> %s' % (po, mo))
|
info('compiling %s -> %s' % (po, mo))
|
||||||
if os.system(cmd) != 0:
|
os.system(cmd)
|
||||||
raise SystemExit('Error while running msgfmt')
|
|
||||||
|
|
||||||
|
|
||||||
class InstallData(install_data):
|
class InstallData(install_data):
|
||||||
|
|
Loading…
Reference in New Issue