diff options
author | kotfu <kotfu@kotfu.net> | 2018-04-29 19:07:05 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-04-29 19:07:05 -0600 |
commit | eecdc5cd3e155e21b65c7e87c4b82832d5232430 (patch) | |
tree | 57b75af030704fac13d269929bced2e3468612dc /cmd2/parsing.py | |
parent | efce15990f2485666f38178ca444c786ac05901d (diff) | |
download | cmd2-git-eecdc5cd3e155e21b65c7e87c4b82832d5232430.tar.gz |
Missed a mutable argument
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r-- | cmd2/parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py index a6e67096..c1795f33 100644 --- a/cmd2/parsing.py +++ b/cmd2/parsing.py @@ -58,7 +58,7 @@ class StatementParser(): terminators=None, multiline_commands=None, aliases=None, - shortcuts=[], + shortcuts=None, ): self.allow_redirection = allow_redirection if terminators is None: |