From 042ad5cafc263d929e7144503802808b2fdbf03a Mon Sep 17 00:00:00 2001 From: JackDandy Date: Sat, 12 Sep 2015 02:29:35 +0100 Subject: [PATCH] Fix halting in mid flow of Add Existing Show which resulted in failure to scan statuses and filesizes. --- CHANGES.md | 1 + sickbeard/tv.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index eb463908..e8e2f743 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -29,6 +29,7 @@ * Change white text in light theme on Manage / Episode Status Management page to black for better readability * Change TtN provider to parse new layout * Improve recognition of SD quality +* Fix halting in mid flow of Add Existing Show which resulted in failure to scan statuses and filesizes ### 0.10.0 (2015-08-06 11:05:00 UTC) diff --git a/sickbeard/tv.py b/sickbeard/tv.py index 2ed8fe57..5a4d5783 100644 --- a/sickbeard/tv.py +++ b/sickbeard/tv.py @@ -726,7 +726,7 @@ class TVShow(object): if None is not new_status: with cur_ep.lock: logger.log(u'STATUS: we have an associated file, so setting the status from %s to DOWNLOADED/%s' - % (cur_ep.status, Quality.compositeStatus(Quality.DOWNLOADED, new_quality)), logger.DEBUG) + % (cur_ep.status, Quality.compositeStatus(new_status, new_quality)), logger.DEBUG) cur_ep.status = Quality.compositeStatus(new_status, new_quality) with cur_ep.lock: