mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-08 11:03:38 +00:00
Merge pull request #508 from JackDandy/feature/FixAddExisting
Fix halting in mid flow of Add Existing Show which resulted in failur…
This commit is contained in:
commit
9ccc4936a5
2 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
||||||
* Change white text in light theme on Manage / Episode Status Management page to black for better readability
|
* Change white text in light theme on Manage / Episode Status Management page to black for better readability
|
||||||
* Change TtN provider to parse new layout
|
* Change TtN provider to parse new layout
|
||||||
* Improve recognition of SD quality
|
* 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)
|
### 0.10.0 (2015-08-06 11:05:00 UTC)
|
||||||
|
|
|
@ -726,7 +726,7 @@ class TVShow(object):
|
||||||
if None is not new_status:
|
if None is not new_status:
|
||||||
with cur_ep.lock:
|
with cur_ep.lock:
|
||||||
logger.log(u'STATUS: we have an associated file, so setting the status from %s to DOWNLOADED/%s'
|
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)
|
cur_ep.status = Quality.compositeStatus(new_status, new_quality)
|
||||||
|
|
||||||
with cur_ep.lock:
|
with cur_ep.lock:
|
||||||
|
|
Loading…
Reference in a new issue