From 72fa87b2dde0208bb31da1f1e519861b54937f83 Mon Sep 17 00:00:00 2001 From: l3uddz Date: Fri, 9 Mar 2018 18:33:43 +0000 Subject: [PATCH] slight log/notification message change. --- traktarr.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/traktarr.py b/traktarr.py index 6363ffd..9418b16 100644 --- a/traktarr.py +++ b/traktarr.py @@ -370,10 +370,10 @@ def automatic_shows(add_delay=2.5, no_search=False, notifications=False): # sleep time.sleep(10) - log.info("Finished, added %d shows total to Sonarr", total_shows_added) + log.info("Finished, added %d shows total to Sonarr!", total_shows_added) # send notification if notifications: - notify.send(message="Added %d shows total to Sonarr" % total_shows_added) + notify.send(message="Added %d shows total to Sonarr!" % total_shows_added) except Exception: log.exception("Exception while automatically adding shows: ") @@ -411,10 +411,10 @@ def automatic_movies(add_delay=2.5, no_search=False, notifications=False): # sleep time.sleep(10) - log.info("Finished, added %d movies total to Radarr", total_movies_added) + log.info("Finished, added %d movies total to Radarr!", total_movies_added) # send notification if notifications: - notify.send(message="Added %d movies total to Radarr" % total_movies_added) + notify.send(message="Added %d movies total to Radarr!" % total_movies_added) except Exception: log.exception("Exception while automatically adding movies: ")