diff --git a/volatility/cli/volshell/generic.py b/volatility/cli/volshell/generic.py index 4b7a86f57..f145e79a7 100644 --- a/volatility/cli/volshell/generic.py +++ b/volatility/cli/volshell/generic.py @@ -75,8 +75,12 @@ class Volshell(interfaces.plugins.PluginInterface, interfaces.plugins.FileConsum return renderers.TreeGrid([("Terminating", str)], None) - def help(self): + def help(self, *args): """Describes the available commands""" + if args: + help(*args) + return + variables = [] print("\nMethods:") for aliases, item in self.construct_locals():