From 6b2af475520952d8f820815d5f7184544e109880 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Fri, 7 Jan 2011 20:36:42 -0600 Subject: [PATCH] don't display 'debug' in the alias list --- DrBotIRC.py | 1 + 1 file changed, 1 insertion(+) diff --git a/DrBotIRC.py b/DrBotIRC.py index af7e44d..e440530 100644 --- a/DrBotIRC.py +++ b/DrBotIRC.py @@ -126,6 +126,7 @@ class DrBotIRC(irclib.IRC): return self.reply(connection, replypath, alias) else: alist = self.config.options('Alias') + alist.remove('debug') alist.sort() liststr = ', '.join(alist) return self.reply(connection, replypath, liststr)