aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mitmproxy/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index 7bb2bf8e..48968c90 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -24,7 +24,7 @@ def verify_arg_signature(f: typing.Callable, args: list, kwargs: dict) -> None:
def lexer(s):
# mypy mis-identifies shlex.shlex as abstract
- lex = shlex.shlex(s) # type: ignore
+ lex = shlex.shlex(s, posix=True) # type: ignore
lex.wordchars += "."
lex.whitespace_split = True
lex.commenters = ''