Skip to content

Commit

Permalink
py: clean up missing-arg message
Browse files Browse the repository at this point in the history
  • Loading branch information
dgw committed Nov 9, 2019
1 parent c88e0a7 commit 56d117b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel/modules/py.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
def py(bot, trigger):
"""Evaluate a Python expression."""
if not trigger.group(2):
return bot.say("Need an expression to evaluate")
return bot.reply('I need an expression to evaluate.')

query = trigger.group(2)
uri = BASE_TUMBOLIA_URI + 'py/'
Expand Down

0 comments on commit 56d117b

Please sign in to comment.