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

Lower the playlist and option names

This commit is contained in:
phxntxm 2017-06-07 21:19:31 -05:00
parent 3fb4d3f337
commit 60e9348896

View file

@ -250,6 +250,7 @@ class Playlist:
await ctx.invoke(self.playlists)
question = "Please provide what playlist you would like to edit, the playlists you have available are above."
playlist = await self.get_response(ctx, question)
playlist = playlist.lower().strip()
if not playlist:
return
if playlist not in names:
@ -270,6 +271,7 @@ class Playlist:
# We want to loop this in order to continue editing, till the user is done
while True:
response = await self.get_response(ctx, q1)
response = response.lower().strip()
if not response:
break