Fix halting in mid flow of Add Existing Show which resulted in failure to scan statuses and filesizes.

This commit is contained in:
JackDandy 2015-09-12 02:29:35 +01:00
parent d78838c2c7
commit 042ad5cafc
2 changed files with 2 additions and 1 deletions

View file

@ -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)

View file

@ -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: