diff --git a/FreeboxMoviePlanner.py b/FreeboxMoviePlanner.py index c48857e..1bc8e76 100755 --- a/FreeboxMoviePlanner.py +++ b/FreeboxMoviePlanner.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 """ Simple script that extracts information from Télé 7 jours and TMDB -to help choosing the movies you want to record with your Freebox +to help select and plan the movies you want to record with your Freebox """ import argparse import datetime @@ -178,10 +178,10 @@ class FreeboxMoviePlanner: def askForUserSelection(self): for movie in self.movies: print(movie) - reply = input("Interested? (y)es/(N)o/(s)kip") + reply = input("Interested? (y)es/(N)o/(q)uit") if reply.upper() == "Y": movie.user_selected = True - elif reply.upper() == "S": + elif reply.upper() == "Q": break print() @@ -282,6 +282,7 @@ if __name__ == '__main__': ) args = parser.parse_args() + print("Working the magic… please wait…") if args.day: movies = TVGuideScraper._getMovies() else: