Fixed paginator in repl

This commit is contained in:
Dustin Pianalto 2018-06-07 19:01:36 -08:00
parent 95fce3f636
commit 12db8a520d

View File

@ -37,7 +37,7 @@ class Repl:
async def _eval(self, ctx, *, body: str): async def _eval(self, ctx, *, body: str):
if ctx.author.id != ownerid: if ctx.author.id != ownerid:
return return
pag = Paginator() pag = Paginator(self.bot)
env = { env = {
'bot': self.bot, 'bot': self.bot,
'ctx': ctx, 'ctx': ctx,