diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-18 13:15:59 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-18 13:15:59 -0500 |
commit | fb118b9fad6a5916c3264568873a77bb03cb4229 (patch) | |
tree | 7d6c90c08c1d226704385f0cde0a95f7cdfa4652 /cmd2/cmd2.py | |
parent | caa7865cf16b4ed96b9307b7f943358534ec4a0a (diff) | |
download | cmd2-git-fb118b9fad6a5916c3264568873a77bb03cb4229.tar.gz |
Updated change log and comment
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 67304636..caeb4ab0 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1417,8 +1417,8 @@ class Cmd(cmd.Cmd): return None except CompletionError as ex: - err_str = str(ex) # Don't print error and redraw the prompt unless the error has length + err_str = str(ex) if err_str: if ex.apply_style: err_str = ansi.style_error(err_str) |