summaryrefslogtreecommitdiff
path: root/cmd2
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-10-26 15:11:07 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-10-26 15:11:07 -0400
commit2f27fdb9cf4334634fa38fda92c8ebae4868fac2 (patch)
treea441bc4b79a467171bbd3262dc81891fd225943f /cmd2
parenta790e5fbace8b3d3b060ee7337d191d1a50e404e (diff)
downloadcmd2-git-2f27fdb9cf4334634fa38fda92c8ebae4868fac2.tar.gz
Fixed messed up GitHub auto-commit from PR suggestion
Diffstat (limited to 'cmd2')
-rw-r--r--cmd2/cmd2.py3
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)