mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 06:13:19 -07:00
Fix invalid string formatting
This commit is contained in:
parent
baef434332
commit
43c4138361
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ def process(
|
||||||
scan_id = None
|
scan_id = None
|
||||||
elif section == 'Watcher3' and result['status'] == 'finished':
|
elif section == 'Watcher3' and result['status'] == 'finished':
|
||||||
update_movie_status = result['tasks']['update_movie_status']
|
update_movie_status = result['tasks']['update_movie_status']
|
||||||
logger.postprocess('Watcher3 updated status to {}'.format())
|
logger.postprocess(f'Watcher3 updated status to {section}')
|
||||||
if update_movie_status == 'Finished':
|
if update_movie_status == 'Finished':
|
||||||
return ProcessResult(
|
return ProcessResult(
|
||||||
message=f'{section}: Successfully post-processed {input_name}',
|
message=f'{section}: Successfully post-processed {input_name}',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue