Minor comment changes

This commit is contained in:
2019-10-10 01:37:39 +02:00
parent 23838437bc
commit 53b8ca8b1e

View File

@ -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: