From 56d117b22c0a358c2484fde56efb94847e8d6aad Mon Sep 17 00:00:00 2001 From: dgw Date: Mon, 14 Oct 2019 15:59:48 -0500 Subject: [PATCH] py: clean up missing-arg message --- sopel/modules/py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel/modules/py.py b/sopel/modules/py.py index 91c767597e..996ecba560 100644 --- a/sopel/modules/py.py +++ b/sopel/modules/py.py @@ -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/'