songs2slides

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

commit 1bee316ed5aec7e061d1545ad5198fde84e0a27d
parent dd9584fb758549a0ee0a8a29fc9c265239453294
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Sat, 18 Apr 2020 08:49:24 -0700

Implement feature to keep window open after error.

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

diff --git a/Songs2Slides.py b/Songs2Slides.py @@ -131,6 +131,7 @@ if (__name__ == "__main__"): settings = json.load(f) except: print("There was an error while loading the settings.") + input("Press enter to exit...") sys.exit() # Print title @@ -217,6 +218,7 @@ if (__name__ == "__main__"): CreatePptx(lyrics, filepath, openFirst, settings) except: print("There was an error while creating the powerpoint.") + input("Press enter to exit...") sys.exit() # Open powerpoint @@ -225,4 +227,5 @@ if (__name__ == "__main__"): os.startfile(filepath) except: print("There was an error while opening the powerpoint.") + input("Press enter to exit...") sys.exit() \ No newline at end of file