From e90d72e6e055e8efa04863b070168c359beb5498 Mon Sep 17 00:00:00 2001 From: neersighted Date: Fri, 30 Mar 2012 16:58:12 -0700 Subject: [PATCH] docstring tweaks --- plugins/ignore.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/ignore.py b/plugins/ignore.py index 9d3ab6a..48475df 100755 --- a/plugins/ignore.py +++ b/plugins/ignore.py @@ -49,7 +49,7 @@ def ignored(inp, bot=None): @hook.command(adminonly=True) def ignore(inp, input=None, notice=None): - ".ignore -- Makes the bot ignore someone." + ".ignore -- Makes the bot ignore ." target = inp if is_ignored(target): @@ -61,7 +61,7 @@ def ignore(inp, input=None, notice=None): @hook.command(adminonly=True) def unignore(inp, input=None, notice=None): - ".unignore channels/users/hosts -- Makes the bot listen to someone." + ".unignore -- Makes the bot listen to ." target = inp if is_ignored(target): @@ -71,3 +71,4 @@ def unignore(inp, input=None, notice=None): else: notice("%s is not ignored." % target) return +