From 7f8ded9f0e5670e8ef65d46c940a5100d396f058 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Tue, 18 Mar 2014 19:59:02 +1030 Subject: [PATCH] more minor fixes --- autoProcess/autoProcessMovie.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoProcess/autoProcessMovie.py b/autoProcess/autoProcessMovie.py index 9aab0fd8..e662cf8d 100644 --- a/autoProcess/autoProcessMovie.py +++ b/autoProcess/autoProcessMovie.py @@ -115,8 +115,8 @@ def get_movie_info(baseURL, imdbid, download_id): continue if len(releaselist) == 1: - Logger.debug("Found a single release with download_id: %s. Release status is: %s", download_id, release_status) release_status = releaselist[0]["status"] + Logger.debug("Found a single release with download_id: %s. Release status is: %s", download_id, release_status) break @@ -130,7 +130,7 @@ def get_status(baseURL, movie_id, download_id): if not movie_id: return None, None - Logger.debug("Looking for status of movie: %s - with release sent to clientAgent: %s and download_id: %s", movie_id, clientAgent, download_id) + Logger.debug("Looking for status of movie: %s", movie_id) if not result: # we haven't already called media.get url = baseURL + "media.get/?id=" + str(movie_id) Logger.debug("Opening URL: %s", url)