diff options
-rw-r--r-- | cmd2/cmd2.py | 3 | ||||
-rw-r--r-- | tests/conftest.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index b13eb45b..560ee68f 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -3338,7 +3338,8 @@ class Cmd(cmd.Cmd): help='display history and include expanded commands if they\n' 'differ from the typed command') history_format_group.add_argument('-a', '--all', action='store_true', - help='display all commands, including ones persisted from previous sessions') + help='display all commands, including ones persisted from\n' + 'previous sessions') history_arg_help = ("empty all history items\n" "a one history item by number\n" diff --git a/tests/conftest.py b/tests/conftest.py index 769e5a8f..dc5c1ab1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -89,7 +89,8 @@ formatting: macros expanded, instead of typed commands -v, --verbose display history and include expanded commands if they differ from the typed command - -a, --all display all commands, including ones persisted from previous sessions + -a, --all display all commands, including ones persisted from + previous sessions """ # Output from the shortcuts command with default built-in shortcuts |