mirror of
https://github.com/SinTan1729/TvTimeToTrakt.git
synced 2025-04-19 17:40:01 -05:00
Add bell on manual input prompt (suggested by @WeirdAlex03)
This commit is contained in:
parent
134eb720e8
commit
7974a2c5d0
1 changed files with 3 additions and 2 deletions
|
@ -237,7 +237,7 @@ def getShowByName(name, seasonNo, episodeNo):
|
||||||
# then prompt the user to make a selection
|
# then prompt the user to make a selection
|
||||||
else:
|
else:
|
||||||
print(
|
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
|
# Output each show for manual selection
|
||||||
|
@ -554,7 +554,7 @@ def getMovieByName(name):
|
||||||
# then prompt the user to make a selection
|
# then prompt the user to make a selection
|
||||||
else:
|
else:
|
||||||
print(
|
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
|
# Output each movie for manual selection
|
||||||
|
@ -808,6 +808,7 @@ def start():
|
||||||
# from TV Time into Trakt
|
# from TV Time into Trakt
|
||||||
logging.info("Processing watched shows.")
|
logging.info("Processing watched shows.")
|
||||||
processWatchedShows()
|
processWatchedShows()
|
||||||
|
# TODO: Add support for followed shows
|
||||||
elif menuSelection == 2:
|
elif menuSelection == 2:
|
||||||
# Invoke the method which will import movies which have been watched
|
# Invoke the method which will import movies which have been watched
|
||||||
# from TV Time into Trakt
|
# from TV Time into Trakt
|
||||||
|
|
Loading…
Reference in a new issue