diff options
-rwxr-xr-x | cmd2.py | 2 | ||||
-rwxr-xr-x | examples/remove_unused.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -2176,7 +2176,7 @@ a..b, a:b, a:, ..b items by indices (inclusive) @with_argument_list def do_edit(self, arglist): - """Edit a file or command in a text editor. + """Edit a file in a text editor. Usage: edit [file_path] Where: diff --git a/examples/remove_unused.py b/examples/remove_unused.py index c8c9e15e..2de0e9b6 100755 --- a/examples/remove_unused.py +++ b/examples/remove_unused.py @@ -19,10 +19,10 @@ class RemoveUnusedBuiltinCommands(cmd2.Cmd): cmd2.Cmd.__init__(self) # To hide commands from displaying in the help menu, add their function name to the exclude_from_help list - self.exclude_from_help.append('do__relative_load') + self.exclude_from_help.append('do_py') # To remove built-in commands entirely, delete their "do_*" function from the cmd2.Cmd class - del cmd2.Cmd.do_cmdenvironment + del cmd2.Cmd.do_edit if __name__ == '__main__': |