diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-01-15 13:56:05 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-01-15 13:56:09 -0500 |
commit | 8d9c2813134c38f80ead43578d97b15a44503471 (patch) | |
tree | 6bdd87c10aec7c9907656262c85fef711ed1beed /cmd2.py | |
parent | c6a19be70445dcf115500ff5e944d9d2937829bb (diff) | |
download | cmd2-git-8d9c2813134c38f80ead43578d97b15a44503471.tar.gz |
__relative_load command is now hidden from help menu by default
Diffstat (limited to 'cmd2.py')
-rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -547,7 +547,7 @@ class Cmd(cmd.Cmd): allow_redirection = True # Should output redirection and pipes be allowed default_to_shell = False # Attempt to run unrecognized commands as shell commands excludeFromHistory = '''run ru r history histor histo hist his hi h edit edi ed e eof eo eos'''.split() - exclude_from_help = ['do_eof', 'do_eos'] # Commands to exclude from the help menu + exclude_from_help = ['do_eof', 'do_eos', 'do__relative_load'] # Commands to exclude from the help menu reserved_words = [] # Attributes which ARE dynamically settable at runtime |