Closes LP #234274 by making setup.py more resilient

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

View File

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