From cd9233d09f2e93717581745f4d0fd3ecde3503f1 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 4 Jun 2008 00:55:04 +0100 Subject: [PATCH] Candidate fix for LP #234274 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 842107e5..3b6e7090 100755 --- a/setup.py +++ b/setup.py @@ -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):