From ce9dda8239d9a71fda2e48827da796d5bd1d4b96 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Tue, 19 Apr 2022 16:58:57 -0600 Subject: [PATCH] Remove extra spaces in tail command --- jarvis/cogs/botutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/cogs/botutil.py b/jarvis/cogs/botutil.py index 65dcb9b..312bd4b 100644 --- a/jarvis/cogs/botutil.py +++ b/jarvis/cogs/botutil.py @@ -25,7 +25,7 @@ class BotutilCog(Scale): lines.append(line) if len(lines) == count: lines.pop(0) - log = "\n".join(lines) + log = "".join(lines) await ctx.reply(content=f"```\n{log}\n```") @message_command(name="log")