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