diff --git a/Discord/cogs/audio.py b/Discord/cogs/audio.py index fa044dfcd3..6faa56f196 100644 --- a/Discord/cogs/audio.py +++ b/Discord/cogs/audio.py @@ -582,7 +582,10 @@ async def tts_options( async def file(self, ctx, *, filename : str = ""): '''Play an audio file''' if not (await self.players[ctx.guild.id].play_file(ctx, filename)): - await ctx.embed_reply(":warning: Something else is already playing\nPlease stop it first") + await ctx.embed_reply( + ":warning: Something else is already playing\n" + "Please stop it first" + ) @commands.command() @checks.not_forbidden()