From 3d1f8b30d3458ae56fc3e80d04fcba40f07105d9 Mon Sep 17 00:00:00 2001 From: Joe Wilson Date: Thu, 16 May 2024 15:40:56 -0700 Subject: [PATCH] Fixes log statement. --- plugin_runner/plugin_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_runner/plugin_runner.py b/plugin_runner/plugin_runner.py index 88027936..08d15ccb 100644 --- a/plugin_runner/plugin_runner.py +++ b/plugin_runner/plugin_runner.py @@ -101,7 +101,7 @@ def load_or_reload_plugin(path: pathlib.Path) -> None: try: manifest_json = json.loads(manifest_json) except Exception as e: - log.warning(f'Unable to load plugin "{name}":', e) + log.warning(f'Unable to load plugin "{name}": {e}') return secrets_file = path / SECRETS_FILE_NAME