Remove end of sentence punctuation for log consistency
This commit is contained in:
parent
c11c87ccae
commit
7905d7d3ed
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue