mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-12 04:37:38 +02:00
Fix minor breakage from the previous reordering of parameters.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user