diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index e41e0384..f5bdb2e1 100755 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -101,7 +101,9 @@ class ActualUtils(commands.Cog): await ctx.defer() try: res = client.query(query) - return await ctx.send_followup(next(res.results).text) + return await ctx.send_followup( + "You asked: %s\n\n%s" % (query, next(res.results).text) + ) except Exception: return await ctx.send_followup("Sorry, I'm unable to answer that")