From 2bd12b834f772c98ae2696c989abfcb07dd63809 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 17 Aug 2016 23:25:08 +0100 Subject: [PATCH] Fix minor breakage from the previous reordering of parameters. --- volatility/framework/automagic/construct_layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/automagic/construct_layers.py b/volatility/framework/automagic/construct_layers.py index e05089c3e..2bcf3a122 100644 --- a/volatility/framework/automagic/construct_layers.py +++ b/volatility/framework/automagic/construct_layers.py @@ -17,7 +17,7 @@ class ConstructionMagic(interfaces.automagic.AutomagicInterface): success = True subreq_config_path = interfaces.configuration.path_join(config_path, requirement.name) for subreq in requirement.requirements.values(): - self(context, subreq, subreq_config_path) + self(context, subreq_config_path, subreq) valid = subreq.validate(context, subreq_config_path) # We want to traverse optional paths, so don't check until we've tried to validate if not valid and not subreq.optional: