From 53b8ca8b1e1e92cda555d934c0417d0b62f54554 Mon Sep 17 00:00:00 2001 From: djib Date: Thu, 10 Oct 2019 01:37:39 +0200 Subject: [PATCH] Minor comment changes --- FreeboxMoviePlanner.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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: