remove single quotes in some logging messages (#4908)

('FileNotFoundError: [Errno 2] No such file or directory: ''')
->
(FileNotFoundError: [Errno 2] No such file or directory: '')
This commit is contained in:
Mike Fährmann
2023-12-11 19:13:45 +01:00
parent 1d5ee4239d
commit 92fbf09643
3 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ class PostProcessor():
"_archive_" + self.name)
except Exception as exc:
self.log.warning(
"Failed to open %s archive at '%s' ('%s: %s')",
"Failed to open %s archive at '%s' (%s: %s)",
self.name, archive, exc.__class__.__name__, exc)
else:
self.log.debug("Using %s archive '%s'", self.name, archive)