1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Print the song playing

This commit is contained in:
Phxntxm 2017-05-07 21:11:05 -05:00
parent 4cb478eb8e
commit 1e451942be

View file

@ -68,7 +68,7 @@ class VoiceState:
try:
self.current = await self.songs.get_next_entry()
await self.current.channel.send("Now playing {}".format())
await song.channel.send("Now playing {}".format(self.current))
except ExtractionError as e:
await song.channel.send("Failed to download {}!\nError: {}".format(self.current.title, e))
continue