Nicer exit message :)

This commit is contained in:
Jeremy Fincher 2003-12-09 04:38:04 +00:00
parent dbc7df71de
commit e770054717
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def main():
while world.ircs:
drivers.run()
except (SystemExit, KeyboardInterrupt):
sys.exit(0)
raise SystemExit, 'Goodbye!'
except:
log.exception('Exception raised out of drivers.run:')