From 43c4138361517fc7af428f031941fe70ff38c77e Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Wed, 14 Dec 2022 03:17:19 -0500 Subject: [PATCH] Fix invalid string formatting --- core/auto_process/movies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/auto_process/movies.py b/core/auto_process/movies.py index 4f485335..162140f1 100644 --- a/core/auto_process/movies.py +++ b/core/auto_process/movies.py @@ -389,7 +389,7 @@ def process( scan_id = None elif section == 'Watcher3' and result['status'] == 'finished': 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': return ProcessResult( message=f'{section}: Successfully post-processed {input_name}',