diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-04 23:47:58 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-04 23:47:58 -0500 |
commit | fee77c23579133807d7b275a57a3816259a93f0d (patch) | |
tree | e1db5a664963f52845bf462560ed0a94dee2bbc0 /cmd2 | |
parent | 4657baa622a88291292f532ce36d3508b3ea0048 (diff) | |
download | cmd2-git-fee77c23579133807d7b275a57a3816259a93f0d.tar.gz |
Fixed missing parenthesis
Diffstat (limited to 'cmd2')
-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 1ce8f3a4..d6870d06 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -399,7 +399,7 @@ class Cmd(cmd.Cmd): self.add_settable(Settable('debug', bool, "Show full error stack on error")) self.add_settable(Settable('echo', bool, "Echo command issued into output")) - self.add_settable(Settable('editor', str, "Program used by 'edit'") + self.add_settable(Settable('editor', str, "Program used by 'edit'")) self.add_settable(Settable('feedback_to_output', bool, "Include nonessentials in '|', '>' results")) self.add_settable(Settable('max_completion_items', int, "Maximum number of CompletionItems to display during tab completion")) |