diff --git a/exts/repl.py b/exts/repl.py index 81ada50..af56a27 100644 --- a/exts/repl.py +++ b/exts/repl.py @@ -71,9 +71,11 @@ class Repl: pass value = format_output(value) pag = Paginator() + print(value) pag.add(value) pag.add(f'\nReturned: {ret}') for page in pag.pages(): + print(page) await ctx.send(page) @commands.command(hidden=True)