fix help messages

This commit is contained in:
neersighted 2012-03-23 20:34:33 -07:00
parent f5d09dc35e
commit cb33198bfb

View file

@ -40,11 +40,11 @@ def mutesieve(bot, input, func, type, args):
@hook.command(autohelp=False) @hook.command(autohelp=False)
def listmuted(inp, bot=None): def listmuted(inp, bot=None):
".listmuted -- Lists muted users/channels." ".listmuted -- Lists muted channels/users."
if muted: if muted:
return "Muted users/channels are: " + ", ".join(muted) return "Muted channels/users are: " + ", ".join(muted)
else: else:
return "No users are currently muted." return "No channels/users are currently muted."
@hook.command(adminonly=True) @hook.command(adminonly=True)