From 79e2d20d9d113398deedba1297c07a9e65711193 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 27 Apr 2017 07:28:26 -0700 Subject: [PATCH] commands: remove extraneous private=True from showchan --- plugins/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands.py b/plugins/commands.py index a21c5db..2eca65c 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -99,7 +99,7 @@ def showchan(irc, source, args): secret = ('s', None) in c.modes if secret and not verbose: # Hide secret channels from normal users. - irc.error('Unknown channel %r.' % channel, private=True) + irc.error('Unknown channel %r.' % channel) return nicks = [irc.users[u].nick for u in c.users]