From 6863dc3f107a683111bbaa30240d9ae01c533fd7 Mon Sep 17 00:00:00 2001 From: Douglas RAILLARD Date: Fri, 22 Feb 2019 10:58:57 +0000 Subject: [PATCH] bisector: Fix parameter type Pass a class when expected instead of an instance. --- tools/bisector/bisector/bisector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bisector/bisector/bisector.py b/tools/bisector/bisector/bisector.py index 7d56864d6..ef9080388 100755 --- a/tools/bisector/bisector/bisector.py +++ b/tools/bisector/bisector/bisector.py @@ -3668,7 +3668,7 @@ class MacroStep(StepBase): continue # Select the kwargs applicable for this step - kwargs = get_step_kwargs(step.cat, step.name, step, 'report', step_options) + kwargs = get_step_kwargs(step.cat, step.name, type(step), 'report', step_options) # Pass down some MacroStep-specific parameters if isinstance(step, MacroStep): -- GitLab