From 63fcb397e171fe4d3d6551478d3f1dbccdf9aa7e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 13 Jan 2016 00:59:18 +0000 Subject: [PATCH] Refactor path variable to make it clearer. --- volatility/cli/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/volatility/cli/__init__.py b/volatility/cli/__init__.py index b1e346a74..6f33921b0 100644 --- a/volatility/cli/__init__.py +++ b/volatility/cli/__init__.py @@ -59,10 +59,10 @@ class CommandLine(object): ctx.config["pslist.primary.page_map_offset"] = 0x39000 ctx.config["pslist.offset"] = 0x823c87c0 - path = plugin.__name__.lower() - if dldr.validate_dependencies(dependencies, context = ctx, path = path): + config_path = plugin.__name__.lower() + if dldr.validate_dependencies(dependencies, context = ctx, path = config_path): # Construct and run the plugin - plugin(ctx, path).run() + plugin(ctx, config_path).run() def main():