From 2ce77299168527cf388edf9ee2321b143bf5dc91 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 31 Mar 2003 09:27:15 +0000 Subject: [PATCH] Fixed minor style bug --- src/ircmsgs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ircmsgs.py b/src/ircmsgs.py index f7e585c2a..c1472410d 100644 --- a/src/ircmsgs.py +++ b/src/ircmsgs.py @@ -41,7 +41,7 @@ import ircutils class IrcMsg(object): """Class to represent an IRC message. """ -# __slots__ = ('_args', '_command', '_host', '_nick', '_prefix', '_user') + #__slots__ = ('_args', '_command', '_host', '_nick', '_prefix', '_user') def __init__(self, s='', command='', args=None, prefix='', msg=None): if msg: prefix = msg.prefix @@ -325,4 +325,5 @@ def whois(nick): def invite(channel, user): return IrcMsg(command='INVITE', args=(channel, user)) + # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: