Skip to content

Commit eb5534d

Browse files
authored
Merge pull request #1340 from joren485/print-plugin-description
Print plugin description on plugin --help
2 parents 70188b0 + 74cf394 commit eb5534d

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)