mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-22 04:45:05 +00:00
fix logging existing quality/status logging
This commit is contained in:
parent
1ffb013f8d
commit
704ce8d691
1 changed files with 1 additions and 2 deletions
|
@ -3768,9 +3768,8 @@ class TVShow(TVShowBase):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
cur_status, cur_quality = Quality.split_composite_status(int(sql_result[0]['status']))
|
cur_status, cur_quality = Quality.split_composite_status(int(sql_result[0]['status']))
|
||||||
ep_status_text = statusStrings[cur_status]
|
|
||||||
|
|
||||||
logger.debug('Existing episode status: %s (%s)' % (statusStrings[cur_status], ep_status_text))
|
logger.debug(f'Existing episode status: {statusStrings[int(sql_result[0]["status"])]}')
|
||||||
|
|
||||||
# if we know we don't want it then just say no
|
# if we know we don't want it then just say no
|
||||||
if cur_status in [IGNORED, ARCHIVED] + ([SKIPPED], [])[multi_ep] and not manual_search:
|
if cur_status in [IGNORED, ARCHIVED] + ([SKIPPED], [])[multi_ep] and not manual_search:
|
||||||
|
|
Loading…
Reference in a new issue