From 5f43d70f9739c64c5c7925843ce00ba9d2e36495 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Fri, 20 Apr 2012 08:56:06 +1200 Subject: [PATCH] Fixed bug in plugins/fortune.py --- plugins/fortune.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fortune.py b/plugins/fortune.py index c31a17d..cb1d965 100755 --- a/plugins/fortune.py +++ b/plugins/fortune.py @@ -11,7 +11,7 @@ with open("plugins/data/fortunes.txt") as f: fortunes.append(line.strip()) -@hook.command +@hook.command(autohelp=False) def fortune(inp): ".fortune -- Fortune cookies on demand." return random.choice(fortunes)