From 11a1fcddf045810ef0630df0d7cf43458e39ed90 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 7 Jul 2020 19:52:13 +0200 Subject: Fix incorrect prompt --- automedia.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automedia.py b/automedia.py index 9d05636..7b93df2 100755 --- a/automedia.py +++ b/automedia.py @@ -247,7 +247,7 @@ def get_rss_from_episode_info(episode_name_raw, episode_info): generic_name = episode_info.get_generic_name() while True: - response = input('Are you sure you want to track "%s" by "%s" starting from "%s" ? (Y)es/No: ' % (generic_name, "all users" if user_failed else episode_info.group_name, episode_name_raw)) + response = input('Are you sure you want to track "%s" by "%s" after "%s" ? (Y)es/No: ' % (generic_name, "all users" if user_failed else episode_info.group_name, episode_name_raw)) if len(response) > 0 and response[0].lower() == 'n': return None elif len(response) == 0 or response[0].lower() == 'y': @@ -662,7 +662,7 @@ def usage_add(): print("OPTIONS") print(" type The type should be either rss or html") print(" url The url to the rss or html") - print(" filename The filename of an episode of an existing serie to start track. Currently only works with rss on https://nyaa.si") + print(" filename The filename of an episode of an existing serie to start track. Currently only works with rss on https://nyaa.si") print(" --name The display name to be used for the media. Optional for rss, in which case the name will be retries from rss TITLE, required for html") print(" --start-after The sync should start downloading media after this item. This --start-after value should be the title of the episode/chapter (Optional, default is to start from the first item)") print("EXAMPLES") -- cgit v1.2.3