1
0
Fork 0
mirror of synced 2024-05-19 20:12:30 +12:00

Ensure a response is given for the first question

This commit is contained in:
phxntxm 2017-06-07 15:56:45 -05:00
parent b0a965031f
commit ef531bd2d2

View file

@ -267,6 +267,9 @@ class Playlist:
while True:
response = await self.get_response(ctx, q1)
if not response:
break
if 'add' in response:
# Ask the user what song to add, get the response, add it
question = "What is the song you would like to add to {}?".format(playlist)