From e8738dccd61bbe76e18d706127d6e31d376bf8d0 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Wed, 11 Jun 2008 00:35:53 +0100 Subject: [PATCH] remove this mistake --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index aac73af0..0f48b134 100755 --- a/setup.py +++ b/setup.py @@ -41,10 +41,8 @@ class BuildData(build): if newer(po, mo): cmd = 'msgfmt -o %s %s' % (mo, po) info('compiling %s -> %s' % (po, mo)) - try: - os.system(cmd) - except: - pass + os.system(cmd) + class InstallData(install_data): def run (self):