From 84b43ade6a1bce37956e57959f889e9d2f74ac38 Mon Sep 17 00:00:00 2001 From: Stijn De Clercq Date: Sat, 27 Feb 2021 15:28:00 +0100 Subject: [PATCH] Fix error in rev --- cogs/oneliners.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/oneliners.py b/cogs/oneliners.py index a9c80ed..0c67f42 100644 --- a/cogs/oneliners.py +++ b/cogs/oneliners.py @@ -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)