diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-25 16:13:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-25 16:13:50 -0700 |
commit | 40dc4554c7321c33ca490b1c45e130000229d274 (patch) | |
tree | bb989bd028a94bce9677c0a940740d2ccf559163 | |
parent | c7feaa60e46563cd60c217d27f888a05c9c3439d (diff) | |
parent | 4a17b5b21c235b82dcf70f2003685fabe51e69ee (diff) | |
download | cmd2-git-40dc4554c7321c33ca490b1c45e130000229d274.tar.gz |
Merge pull request #453 from python-cmd2/unused_param
Removed unused class member
-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 e2fd25fa..f3b3038a 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -304,7 +304,6 @@ class Cmd(cmd.Cmd): Line-oriented command interpreters are often useful for test harnesses, internal tools, and rapid prototypes. """ # Attributes used to configure the StatementParser, best not to change these at runtime - blankLinesAllowed = False multiline_commands = [] shortcuts = {'?': 'help', '!': 'shell', '@': 'load', '@@': '_relative_load'} aliases = dict() |