diff options
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 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")) |