diff --git a/src/bot.py b/src/bot.py index 1d4ee36..ac22c24 100644 --- a/src/bot.py +++ b/src/bot.py @@ -89,7 +89,7 @@ class Music(commands.Cog): # Bot is no longer in a voice channel. # This could be the case because a stop command was issued. # We will skip this (and possibly all remaining songs) in the queue - self.logger.info('Bot is no longer in a voice channel. Skipping song "%s".', song.title) + self.logger.info('Bot is no longer in a voice channel. Skipping song "%s"', song.title) self._next() continue audio = discord.FFmpegPCMAudio(song.audio_url, **self._ffmpeg_options)