From 82274d2a009e1e2e85e2b0b8c9d249adf55635bc Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 6 Mar 2020 05:00:01 -0600 Subject: [PATCH] Tabulate songs in list --- badwitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/badwitch.py b/badwitch.py index 4a78e42..f3e681e 100755 --- a/badwitch.py +++ b/badwitch.py @@ -243,7 +243,7 @@ class BadWitch: for song, songcontent in albumcontent.items(): if song == 'meta': continue - print(str(songcontent['track']) + print('\t' + str(songcontent['track']) + ' - ' + song + ' by ' + songcontent['artist']) return