From cc393c956aec4379f876630f8a866df6e14ca240 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 16 Sep 2019 00:59:35 +0100 Subject: [PATCH] Ensure Volshell doesn't try to output after exiting. --- 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 519078700..0508067f5 100644 --- a/volatility/cli/volshell/__init__.py +++ b/volatility/cli/volshell/__init__.py @@ -214,7 +214,7 @@ class VolShell(cli.CommandLine): json.dump(dict(constructed.build_configuration()), f, sort_keys = True, indent = 2) # Construct and run the plugin - text_renderer.QuickTextRenderer().render(constructed.run()) + constructed.run() except exceptions.UnsatisfiedException as excp: self.process_exceptions(excp) parser.exit(1, "Unable to validate the plugin requirements: {}\n".format([x for x in excp.unsatisfied]))