From e99706384ce78787a242609fceed1e28d205a344 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 29 Oct 2020 00:16:50 +0000 Subject: [PATCH] Volshell: Bump required framework version --- volatility/cli/volshell/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/cli/volshell/__init__.py b/volatility/cli/volshell/__init__.py index 5846943f4..c63eb8a31 100644 --- a/volatility/cli/volshell/__init__.py +++ b/volatility/cli/volshell/__init__.py @@ -42,7 +42,7 @@ class VolShell(cli.CommandLine): determining the plugin to run and then running it.""" sys.stdout.write("Volshell (Volatility 3 Framework) {}\n".format(constants.PACKAGE_VERSION)) - framework.require_interface_version(1, 0, 0) + framework.require_interface_version(2, 0, 0) parser = argparse.ArgumentParser(prog = 'volshell', description = "A tool for interactivate forensic analysis of memory images")