Changes on console error

This commit is contained in:
root 2020-05-01 14:54:08 +05:30
parent 449bdf92c0
commit a0a5e82481

View File

@ -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
)