summaryrefslogtreecommitdiff
path: root/cmd2/parsing.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-04-29 19:07:05 -0600
committerkotfu <kotfu@kotfu.net>2018-04-29 19:07:05 -0600
commiteecdc5cd3e155e21b65c7e87c4b82832d5232430 (patch)
tree57b75af030704fac13d269929bced2e3468612dc /cmd2/parsing.py
parentefce15990f2485666f38178ca444c786ac05901d (diff)
downloadcmd2-git-eecdc5cd3e155e21b65c7e87c4b82832d5232430.tar.gz
Missed a mutable argument
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r--cmd2/parsing.py2
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: