This commit is contained in:
Miroslav Stampar
2020-03-09 10:30:24 +01:00
parent 6cd0b1120f
commit 41bdb93655
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ def htmlUnescape(value):
try:
retVal = re.sub(r"&#x([^ ;]+);", lambda match: _unichr(int(match.group(1), 16)), retVal)
except ValueError:
except (ValueError, OverflowError):
pass
return retVal