diff --git a/cogs/audio.py b/cogs/audio.py index 67a526bab..10ec54443 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -184,6 +184,7 @@ class Audio: msg = ctx.message if self.music_player.is_playing(): if await self.is_alone_or_admin(msg.author): + self.current = -1 self.playlist = [self.downloader["URL"]] await self.bot.say("I will play this song on repeat.") else: diff --git a/cogs/image.py b/cogs/image.py index 28ec5b09e..e7e714c04 100644 --- a/cogs/image.py +++ b/cogs/image.py @@ -108,5 +108,5 @@ def setup(bot): try: from imgurpython import ImgurClient except: - raise ModuleNotFound("imgurpython is not installed. Do 'pip install imgurpython' to use this cog.") + raise ModuleNotFound("imgurpython is not installed. Do 'pip3 install imgurpython' to use this cog.") bot.add_cog(Image(bot)) diff --git a/red.py b/red.py index 205dd0d7d..4e6f64f74 100644 --- a/red.py +++ b/red.py @@ -187,6 +187,7 @@ async def setprefix(*text): @bot.command(name="uptime") async def _uptime(): + """Shows Red's uptime""" up = abs(bot.uptime - int(time.perf_counter())) up = str(datetime.timedelta(seconds=up)) await bot.say("`Uptime: {}`".format(up))