songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit 31717bef220b66af25400eeaf132b1d1d1ae979a
parent b81f8e9e2dcd0ace6b66ba7b074b42195198ba87
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Thu, 16 Apr 2020 19:11:32 -0700

Fix bug that saves the titles of unfound songs.

Diffstat:
MSongs2Slides.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Songs2Slides.py b/Songs2Slides.py @@ -127,9 +127,10 @@ if (__name__ == "__main__"): # Get song lyrics try: + parsedLyrics = ParseLyrics(GetLyrics(artist, title), settings) if (settings["title-slides"]): lyrics += ["{0}\n{1}".format(title, artist)] - lyrics += ParseLyrics(GetLyrics(artist, title), settings) + lyrics += parsedLyrics if (lyrics[-1] != ""): lyrics += [""] except: