diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-03 09:32:54 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-03 09:32:54 -0400 |
commit | 7ac7dd875d3a8b5b9ed63b826f3266a849778f31 (patch) | |
tree | 344317ad08584aaec729d122bbe1d88b8399b548 /cmd2/cmd2.py | |
parent | 5014fecf58bb546a453c57eaff7a226f29bfba46 (diff) | |
parent | 3d5d515aee889bc34b1be65d0ec4023fab613fcb (diff) | |
download | cmd2-git-7ac7dd875d3a8b5b9ed63b826f3266a849778f31.tar.gz |
Merge branch 'master' into auto_completer_refactor
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 0272a7c4..27ff16c8 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -3154,7 +3154,7 @@ class Cmd(cmd.Cmd): readline.set_completion_display_matches_hook(None) elif rl_type == RlType.PYREADLINE: # noinspection PyUnresolvedReferences - readline.rl.mode._display_completions = self._display_matches_pyreadline + readline.rl.mode._display_completions = orig_pyreadline_display # Save off the current completer and set a new one in the Python console # Make sure it tab completes from its locals() dictionary |