Remove extra spaces in tail command
This commit is contained in:
parent
a038930fd5
commit
ce9dda8239
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class BotutilCog(Scale):
|
||||||
lines.append(line)
|
lines.append(line)
|
||||||
if len(lines) == count:
|
if len(lines) == count:
|
||||||
lines.pop(0)
|
lines.pop(0)
|
||||||
log = "\n".join(lines)
|
log = "".join(lines)
|
||||||
await ctx.reply(content=f"```\n{log}\n```")
|
await ctx.reply(content=f"```\n{log}\n```")
|
||||||
|
|
||||||
@message_command(name="log")
|
@message_command(name="log")
|
||||||
|
|
Loading…
Add table
Reference in a new issue