aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/command_lexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/command_lexer.py')
-rw-r--r--mitmproxy/command_lexer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/command_lexer.py b/mitmproxy/command_lexer.py
index f042f3c9..93f87ac5 100644
--- a/mitmproxy/command_lexer.py
+++ b/mitmproxy/command_lexer.py
@@ -16,7 +16,7 @@ PartialQuotedString = pyparsing.Regex(
|
(?:\\.) # escape sequence
)*
- (?:\1|$) # end quote
+ (?:\1?|$) # end quote
''',
re.VERBOSE
)