Minor code styling change in modules/8ball.py

This commit is contained in:
jesopo 2018-11-17 12:48:42 +00:00
parent 7ef8437d44
commit 0f2a8c7932

View file

@ -36,5 +36,5 @@ class Module(ModuleManager.BaseModule):
:help: Ask the mystic 8ball a question! :help: Ask the mystic 8ball a question!
:usage: <question> :usage: <question>
""" """
event["stdout"].write("You shake the magic ball... it " event["stdout"].write("You shake the magic ball... it says %s" %
"says " + utils.irc.bold(random.choice(CHOICES))) utils.irc.bold(random.choice(CHOICES)))