From 7974a2c5d0a49c2127bab710e93fad173ea54a64 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Fri, 6 Jan 2023 15:07:14 +0530 Subject: [PATCH] Add bell on manual input prompt (suggested by @WeirdAlex03) --- TimeToTrakt.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/TimeToTrakt.py b/TimeToTrakt.py index 156622f..a3a36ee 100644 --- a/TimeToTrakt.py +++ b/TimeToTrakt.py @@ -237,7 +237,7 @@ def getShowByName(name, seasonNo, episodeNo): # then prompt the user to make a selection else: print( - f"INFO - MANUAL INPUT REQUIRED: The TV Time data for Show '{name}' (Season {seasonNo}, Episode {episodeNo}) has {len(showsWithSameName)} matching Trakt shows with the same name." + f"INFO - MANUAL INPUT REQUIRED: The TV Time data for Show '{name}' (Season {seasonNo}, Episode {episodeNo}) has {len(showsWithSameName)} matching Trakt shows with the same name.\a" ) # Output each show for manual selection @@ -554,7 +554,7 @@ def getMovieByName(name): # then prompt the user to make a selection else: print( - f"INFO - MANUAL INPUT REQUIRED: The TV Time data for Movie '{name}' has {len(moviesWithSameName)} matching Trakt movies with the same name." + f"INFO - MANUAL INPUT REQUIRED: The TV Time data for Movie '{name}' has {len(moviesWithSameName)} matching Trakt movies with the same name.\a" ) # Output each movie for manual selection @@ -808,6 +808,7 @@ def start(): # from TV Time into Trakt logging.info("Processing watched shows.") processWatchedShows() + # TODO: Add support for followed shows elif menuSelection == 2: # Invoke the method which will import movies which have been watched # from TV Time into Trakt