diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/8ball.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/8ball.py b/modules/8ball.py index 5080af18..92603678 100644 --- a/modules/8ball.py +++ b/modules/8ball.py @@ -36,5 +36,5 @@ class Module(ModuleManager.BaseModule): :help: Ask the mystic 8ball a question! :usage: <question> """ - event["stdout"].write("You shake the magic ball... it " - "says " + utils.irc.bold(random.choice(CHOICES))) + event["stdout"].write("You shake the magic ball... it says %s" % + utils.irc.bold(random.choice(CHOICES))) |
