Closes LP #234274 by making setup.py more resilient
This commit is contained in:
parent
d19b94c653
commit
a1859db459
6
setup.py
6
setup.py
|
@ -41,8 +41,10 @@ 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))
|
||||||
os.system(cmd)
|
try:
|
||||||
|
os.system(cmd)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
class InstallData(install_data):
|
class InstallData(install_data):
|
||||||
def run (self):
|
def run (self):
|
||||||
|
|
Loading…
Reference in New Issue