Remove end of sentence punctuation for log consistency

This commit is contained in:
ekzyis 2021-11-04 01:45:48 +01:00
parent c11c87ccae
commit 7905d7d3ed
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class Music(commands.Cog):
# Bot is no longer in a voice channel. # Bot is no longer in a voice channel.
# This could be the case because a stop command was issued. # This could be the case because a stop command was issued.
# We will skip this (and possibly all remaining songs) in the queue # 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() self._next()
continue continue
audio = discord.FFmpegPCMAudio(song.audio_url, **self._ffmpeg_options) audio = discord.FFmpegPCMAudio(song.audio_url, **self._ffmpeg_options)