From 1edbaab882ea68976fe0913b9b8ea5d5e9452e0f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 15 Oct 2003 03:32:18 +0000 Subject: [PATCH] Removed a comment. --- src/privmsgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/privmsgs.py b/src/privmsgs.py index 55f4cb61f..00661bcd5 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -94,7 +94,7 @@ def checkChannelCapability(f, capability): Do note that you need to add a "channel" argument to your argument list. """ def newf(self, irc, msg, args, *L): - channel = getChannel(msg, args) # Make a copy, f might getChannel. + channel = getChannel(msg, args) chancap = ircdb.makeChannelCapability(channel, capability) if ircdb.checkCapability(msg.prefix, chancap): L += (channel,)