diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-08-23 00:15:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 00:15:28 -0400 |
commit | 0ad6b6d5417d0d126dc39550d5416f266cc47ec5 (patch) | |
tree | f05d2d2ccda46c1374aa36657cef8425d8504b93 /cmd2/cmd2.py | |
parent | 3234833c462bd0817f55b8a8145c99347765e77b (diff) | |
parent | a1ebfe99dc91fc5948aaf67d0086a3d9f1a6828d (diff) | |
download | cmd2-git-0ad6b6d5417d0d126dc39550d5416f266cc47ec5.tar.gz |
Merge pull request #503 from python-cmd2/deprecated_submenu
Deleted a line which was added to support the SubMenu feature
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: |