From 12db8a520dc0234c1f8a73778560ebad959e8411 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Thu, 7 Jun 2018 19:01:36 -0800 Subject: [PATCH] Fixed paginator in repl --- src/exts/repl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exts/repl.py b/src/exts/repl.py index 124335c..2ffc116 100644 --- a/src/exts/repl.py +++ b/src/exts/repl.py @@ -37,7 +37,7 @@ class Repl: async def _eval(self, ctx, *, body: str): if ctx.author.id != ownerid: return - pag = Paginator() + pag = Paginator(self.bot) env = { 'bot': self.bot, 'ctx': ctx,