[1.7.x] Removed an unused variable.

Backport of 684e8a941b from master
This commit is contained in:
Alex Gaynor 2014-03-22 10:11:39 -07:00 committed by Tim Graham
parent d345a030c2
commit 6d254e5a97
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ def _strip_once(value):
return value
try:
s.close()
except (HTMLParseError, UnboundLocalError) as err:
except (HTMLParseError, UnboundLocalError):
# UnboundLocalError because of http://bugs.python.org/issue17802
# on Python 3.2, triggered by strict=False mode of HTMLParser
return s.get_data() + s.rawdata