From e816980471b08bb1bef12a616f7062a6f9f5d4dd Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Mon, 11 Jun 2018 17:50:46 +0100 Subject: [PATCH] fw/execution: add missing sender in signal Add the missing sender for RUN_OUTPUT_PROCESSED signal wrap call. --- wa/framework/execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wa/framework/execution.py b/wa/framework/execution.py index db0e1e81..6a24c226 100644 --- a/wa/framework/execution.py +++ b/wa/framework/execution.py @@ -491,7 +491,7 @@ class Runner(object): self.logger.info('Finalizing run') self.context.end_run() self.pm.enable_all() - with signal.wrap('RUN_OUTPUT_PROCESSED'): + with signal.wrap('RUN_OUTPUT_PROCESSED', self): self.pm.process_run_output(self.context) self.pm.export_run_output(self.context) self.pm.finalize()