Fix the stupid 'I refuse to quit, even in the face of insurmountable odds!' bug.

This commit is contained in:
Jeremy Fincher 2004-02-04 23:07:43 +00:00
parent c7e6e63517
commit f9188e45b3

View File

@ -77,6 +77,8 @@ def main():
(user, system, _, _, _) = os.times()
log.info('Total CPU time taken: %s seconds.', user+system)
raise SystemExit
except SystemExit:
raise
except:
try: # Ok, now we're *REALLY* paranoid!
log.exception('Exception raised out of drivers.run:')