diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-03 17:22:16 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-03 17:22:16 -0400 |
commit | 29eeb8996053f35572f4d7b63e7c8cb0f62b6442 (patch) | |
tree | d5ea2e52b6e3a09f54731aa4858370cdcbcb6e75 /tests/conftest.py | |
parent | b06c95b721b7a1096ce78ec3a96726cdbe7026ad (diff) | |
download | cmd2-git-29eeb8996053f35572f4d7b63e7c8cb0f62b6442.tar.gz |
Removed pause command
It was pretty useless, it just printed a message and sat there and waited for the user to hit enter.
It didn't feel like it belonged in a top-level framework. If a particular application wants this functionality, it is a 2 line change to add it back.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 6941d9fc..69001e42 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -15,8 +15,8 @@ import cmd2 # Help text for base cmd2.Cmd application BASE_HELP = """Documented commands (type help <topic>): ======================================== -_relative_load edit history pause pyscript run set shortcuts -cmdenvironment help load py quit save shell show +_relative_load edit history py quit save shell show +cmdenvironment help load pyscript run set shortcuts """ # Help text for the history command |