From e867e4cab6a2c6660c63a867eefa2796f064db25 Mon Sep 17 00:00:00 2001 From: Kevin Murphy Date: Wed, 29 Dec 2004 06:46:35 +0000 Subject: [PATCH] Easy peezy Fix for Bug #1090008 --- plugins/Herald.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/Herald.py b/plugins/Herald.py index 0d44b0a6d..a1c63f366 100644 --- a/plugins/Herald.py +++ b/plugins/Herald.py @@ -176,7 +176,7 @@ class Herald(callbacks.Privmsg): additional('text')]) def get(self, irc, msg, args, channel, user): - """[] [] + """[] [] Returns the current herald message for (or the user is currently identified or recognized as). If @@ -190,11 +190,11 @@ class Herald(callbacks.Privmsg): irc.error('I have no herald for %s.' % user.name) get = wrap(get, ['channel', first('otherUser', 'user')]) - # I chose not to make optional in this command because + # I chose not to make optional in this command because # if it's not a valid username (e.g., if the user tyops and misspells a # username), it may be nice not to clobber the user's herald. def add(self, irc, msg, args, channel, user, herald): - """[] + """[] Sets the herald message for (or the user is currently identified or recognized as) to . is only @@ -205,7 +205,7 @@ class Herald(callbacks.Privmsg): add = wrap(add, ['channel', 'otherUser', 'text']) def remove(self, irc, msg, args, channel, user): - """[] [] + """[] [] Removes the herald message set for , or the user is currently identified or recognized as. If @@ -221,7 +221,7 @@ class Herald(callbacks.Privmsg): remove = wrap(remove, ['channel', first('otherUser', 'user')]) def change(self, irc, msg, args, channel, user, changer): - """[] [] + """[] [] Changes the herald message for , or the user is currently identified or recognized as, according to . If