From 96ca3208e8b18391e69e487c7d5a0d3710ac52ae Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Tue, 5 Jun 2018 21:48:17 -0800 Subject: [PATCH] test case --- exts/repl.py | 2 ++ 1 file changed, 2 insertions(+) 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)