Fix error in rev

pull/45/head
Stijn De Clercq 2021-02-27 15:28:00 +01:00
parent fe843ad4f0
commit 84b43ade6a
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ class Oneliners(commands.Cog):
@commands.command(name="Reverse", aliases=["Rev"], usage="[Tekst]")
@commands.check(checks.allowedChannels)
@help.Category(category=Category.Other)
async def reverse(self, ctx, *args):
await ctx.send(" ".join(args)[::-1])
async def reverse(self, ctx, *, args):
await ctx.send(args[::-1])
@commands.command(name="Government", aliases=["Gov", "Regering"])
@commands.check(checks.allowedChannels)