diff options
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 53962e2a..718f311f 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -180,10 +180,9 @@ def with_argument_list(func: Callable[[Statement], Optional[bool]], shlex.split(). :param func: do_* method this decorator is wrapping - preserve_quotes: if True, then argument quotes will not be stripped + :param preserve_quotes: if True, then argument quotes will not be stripped :return: function that gets passed a list of argument strings """ - """""" import functools @functools.wraps(func) |