mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
Changes on console error
This commit is contained in:
parent
449bdf92c0
commit
a0a5e82481
@ -12,11 +12,11 @@ PartialQuotedString = pyparsing.Regex(
|
||||
r'''
|
||||
(["']) # start quote
|
||||
(?:
|
||||
(?!\1)[^\\] # unescaped character that is not our quote nor the begin of an escape sequence. We can't use \1 in []
|
||||
|
|
||||
(?:\\.) # escape sequence
|
||||
|
|
||||
(?!\1). # unescaped character that is not our quote nor the begin of an escape sequence. We can't use \1 in []
|
||||
)*
|
||||
(?:\1?|$) # end quote
|
||||
(?:\1|$) # end quote
|
||||
''',
|
||||
re.VERBOSE
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user