From 38804d740f718c6e1db1e96845fae87b597a456e Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Wed, 6 Mar 2019 08:43:17 -0500 Subject: Updated a comment and moved an import --- cmd2/parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd2/parsing.py') diff --git a/cmd2/parsing.py b/cmd2/parsing.py index 9c95ba75..d72ca4ec 100644 --- a/cmd2/parsing.py +++ b/cmd2/parsing.py @@ -256,7 +256,7 @@ def get_command_arg_list(to_parse: Union[Statement, str], preserve_quotes: bool) else: return to_parse.argv[1:] else: - # We only have the argument string. Use the parser to split this string. + # We have the arguments in a string. Use shlex to split it. parsed_arglist = shlex_split(to_parse) if not preserve_quotes: parsed_arglist = [utils.strip_quotes(arg) for arg in parsed_arglist] -- cgit v1.2.1