[utils] Fix unescapeHTML for misformed string like "&a"" (#13935)
This commit is contained in:
parent
f5469da9e6
commit
95f3f7c20a
3 changed files with 8 additions and 1 deletions
|
@ -596,7 +596,7 @@ def unescapeHTML(s):
|
|||
assert type(s) == compat_str
|
||||
|
||||
return re.sub(
|
||||
r'&([^;]+;)', lambda m: _htmlentity_transform(m.group(1)), s)
|
||||
r'&([^&;]+;)', lambda m: _htmlentity_transform(m.group(1)), s)
|
||||
|
||||
|
||||
def get_subprocess_encoding():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue