mirror of https://github.com/django/django.git
parent
d345a030c2
commit
6d254e5a97
|
@ -151,7 +151,7 @@ def _strip_once(value):
|
||||||
return value
|
return value
|
||||||
try:
|
try:
|
||||||
s.close()
|
s.close()
|
||||||
except (HTMLParseError, UnboundLocalError) as err:
|
except (HTMLParseError, UnboundLocalError):
|
||||||
# UnboundLocalError because of http://bugs.python.org/issue17802
|
# UnboundLocalError because of http://bugs.python.org/issue17802
|
||||||
# on Python 3.2, triggered by strict=False mode of HTMLParser
|
# on Python 3.2, triggered by strict=False mode of HTMLParser
|
||||||
return s.get_data() + s.rawdata
|
return s.get_data() + s.rawdata
|
||||||
|
|
Loading…
Reference in New Issue