From 91d7195143ac6f1555fe415b25cdff1f9dc97c9d Mon Sep 17 00:00:00 2001 From: Blacktwin Date: Thu, 3 Jan 2019 15:56:38 -0500 Subject: [PATCH] #133 jbop titles were getting capitalized during creation and causing a mismatch when removing/updating. --- fun/playlist_manager.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/fun/playlist_manager.py b/fun/playlist_manager.py index 481e3b5..a255105 100644 --- a/fun/playlist_manager.py +++ b/fun/playlist_manager.py @@ -650,8 +650,6 @@ if __name__ == "__main__": # Setting custom name if provided if opts.name: title = opts.name - else: - title = title.title() if opts.jbop and opts.action == 'show': show_playlist(title, keys_list)