add return value to 'PostProcessor._init_archive()'

This commit is contained in:
Mike Fährmann
2023-07-24 14:32:25 +02:00
parent 7cd5130e88
commit 6c9432165e
2 changed files with 3 additions and 2 deletions

View File

@@ -22,8 +22,7 @@ class PythonPP(PostProcessor):
module = util.import_file(module_name)
self.function = getattr(module, function_name)
self._init_archive(job, options)
if self.archive:
if self._init_archive(job, options):
self.run = self.run_archive
events = options.get("event")