From dd21472a96c9c921d62bd148d0d12e687bfa811d Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 6 Aug 2020 16:59:53 +0100 Subject: [PATCH] CLI: Add additional help about 'vol.py plugin --help' --- volatility/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/cli/__init__.py b/volatility/cli/__init__.py index b63d2ded9..ed216d376 100644 --- a/volatility/cli/__init__.py +++ b/volatility/cli/__init__.py @@ -209,7 +209,7 @@ class CommandLine(interfaces.plugins.FileConsumerInterface): failures = framework.import_files(volatility.plugins, True) # Will not log as console's default level is WARNING if failures: - parser.epilog = "The following plugins could not be loaded (use -vv to see why): " + \ + parser.epilog += "The following plugins could not be loaded (use -vv to see why): " + \ ", ".join(sorted(failures)) vollog.info(parser.epilog) automagics = automagic.available(ctx)