I'm trying to make a bot where when you type for example "!say hello world" and the bot would reply with "Hello World". But when I try to do spaces it doesn't work.
So when I simply type "!say Hello" it shows this:
As you can see it works fine but when I put a space for example "!say hello world" it shows this:
As you can see it only prints "Hello" and acts like I didn't say "World".
Here is my code:
@client.command()
async def say(ctx, arg):
await ctx.send(arg)

