From 6d8f3531a7855243dc8206c24289d3683e73523c Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Fri, 20 Apr 2018 20:11:55 -0800 Subject: [PATCH] Switching to fetchval --- exts/repl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/repl.py b/exts/repl.py index 8156c38..fef6ead 100644 --- a/exts/repl.py +++ b/exts/repl.py @@ -156,7 +156,7 @@ class Repl: if ctx.author.id != ownerid: return try: - body = self.cleanup_code(body).split(' ') + body = self.cleanup_code(body) result = await asyncio.wait_for(self.bot.loop.create_task(run_command(body)), 10) value = result for page in paginate(value):