Minor code styling change in modules/8ball.py
This commit is contained in:
parent
7ef8437d44
commit
0f2a8c7932
1 changed files with 2 additions and 2 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue