Don't ignore SystemExit; it shouldn't occur while building.

This commit is contained in:
Georg Brandl 2008-06-15 17:48:16 +00:00
parent f7011d436a
commit c8dad69045

View File

@ -141,8 +141,6 @@ def main(argv=sys.argv):
traceback.print_exc()
pdb.post_mortem(sys.exc_info()[2])
return 1
except SystemExit:
return 0
except Exception, err:
if use_pdb:
import pdb