We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f6a0d commit 0e3f7fdCopy full SHA for 0e3f7fd
dissect/target/tools/shell.py
@@ -304,9 +304,10 @@ def _exec_(argparts: list[str], stdout: TextIO) -> bool:
304
no_cyber = cmdfunc.__func__ in (TargetCli.cmd_registry, TargetCli.cmd_enter)
305
return self._exec(_exec_, command_args_str, no_cyber)
306
307
- def do_man(self, line: str) -> None:
+ def do_man(self, line: str) -> bool:
308
"""alias for help"""
309
self.do_help(line)
310
+ return False
311
312
def complete_man(self, *args: list[str]) -> list[str]:
313
return cmd.Cmd.complete_help(self, *args)
0 commit comments