From a38cdf4a695083df62793d9fec3ae82679241877 Mon Sep 17 00:00:00 2001 From: phantium Date: Tue, 5 Jul 2016 01:41:37 +0200 Subject: [PATCH] [Audio] Fixed docstrings / command help (#324) --- cogs/audio.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/audio.py b/cogs/audio.py index ad7ae0fac..8d7d0ffd6 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -1165,7 +1165,7 @@ class Audio: @commands.command(pass_context=True, no_pm=True) async def pause(self, ctx): - """Pauses the current song, `!resume` to continue.""" + """Pauses the current song, `[p]resume` to continue.""" server = ctx.message.server if not self.voice_connected(server): await self.bot.say("Not voice connected in this server.") @@ -1435,7 +1435,7 @@ class Audio: @commands.command(pass_context=True, no_pm=True, name="queue") async def _queue(self, ctx, *, url=None): - """Queues a song to play next. Extended functionality in `!help` + """Queues a song to play next. Extended functionality in `[p]help` If you use `queue` when one song is playing, your new song will get added to the song loop (if running). If you use `queue` when a @@ -1531,7 +1531,7 @@ class Audio: else: msg = "The queue is currently not looping." await self.bot.say(msg) - await self.bot.say("Do `!repeat toggle` to change this.") + await self.bot.say("Do `{}repeat toggle` to change this.".format(ctx.prefix)) else: await self.bot.say("Play something to see this setting.")