def quit(context, message=""): """Quit the bot from IRC.""" cli = context.client if cli is None or cli.socket.fileno() < 0: plog("Socket is already closed. Exiting.") raise SystemExit with cli: cli.send("QUIT :{0}".format(message))