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):