Skip to content

Commit 74cf394

Browse files
committed
Print plugin description on plugin --help
1 parent 932ea7f commit 74cf394

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

volatility3/cli/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,9 @@ def run(self):
367367
)
368368
for plugin in sorted(plugin_list):
369369
plugin_parser = subparser.add_parser(
370-
plugin, help=plugin_list[plugin].__doc__
370+
plugin,
371+
help=plugin_list[plugin].__doc__,
372+
description=plugin_list[plugin].__doc__,
371373
)
372374
self.populate_requirements_argparse(plugin_parser, plugin_list[plugin])
373375

0 commit comments

Comments
 (0)