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: """ - 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)))