diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-22 00:54:17 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-22 00:54:17 -0400 |
commit | a1ebfe99dc91fc5948aaf67d0086a3d9f1a6828d (patch) | |
tree | f05d2d2ccda46c1374aa36657cef8425d8504b93 /cmd2/cmd2.py | |
parent | 3234833c462bd0817f55b8a8145c99347765e77b (diff) | |
download | cmd2-git-a1ebfe99dc91fc5948aaf67d0086a3d9f1a6828d.tar.gz |
Deleted a line which was added to support the SubMenu feature
The SubMenu feature is now a plugin in a separate repo and is no longer part of the main cmd2 package.
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f39ee2ee..58972232 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2464,7 +2464,6 @@ Usage: Usage: unalias [-a] name [name ...] def do_eof(self, _: str) -> bool: """Called when <Ctrl>-D is pressed.""" # End of script should not exit app, but <Ctrl>-D should. - print('') # Required for clearing line when exiting submenu return self._STOP_AND_EXIT def do_quit(self, _: str) -> bool: |