Skip to content

Commit

Permalink
actually quit, fix #1263
Browse files Browse the repository at this point in the history
  • Loading branch information
pefoley2 committed Nov 18, 2015
1 parent 365f6e8 commit 2b3b98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cslbot/helpers/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def handle_quit(self, _, e):
self.handler.do_log(channel, e.source, e.arguments[0], 'quit')
# If we're the one quiting, shut things down cleanly.
# If it's an Excess Flood or other server-side quit we want to reconnect.
if e.source.nick == self.connection.real_nickname and e.arguments[0] in ['Client Quit', 'Goodbye, Cruel World!']:
if e.source.nick == self.connection.real_nickname and e.arguments[0] in ['Client Quit', 'Quit: Goodbye, Cruel World!']:
self.connection.close()
self.shutdown_mp()
sys.exit(0)
Expand Down

0 comments on commit 2b3b98f

Please sign in to comment.