From 15249514caf23052898d63be300d82bb4af5f3a1 Mon Sep 17 00:00:00 2001 From: Michael Ellis Date: Thu, 23 Jun 2016 12:49:58 -0400 Subject: [PATCH] Suppress "Before ETA" notifications when "Always search" is disabled --- couchpotato/core/media/movie/searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/media/movie/searcher.py b/couchpotato/core/media/movie/searcher.py index 5b3ac11..5411454 100755 --- a/couchpotato/core/media/movie/searcher.py +++ b/couchpotato/core/media/movie/searcher.py @@ -246,7 +246,7 @@ class MovieSearcher(SearcherBase, MovieTypeBase): if len(too_early_to_search) > 0: log.info2('Too early to search for %s, %s', (too_early_to_search, default_title)) - if outside_eta_results > 0: + if outside_eta_results > 0 and always_search: message = 'Found %s releases for "%s" before ETA. Select and download via the dashboard.' % (outside_eta_results, default_title) log.info(message)