From 6d254e5a97e719800846e34058ae9752172dbb0e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 22 Mar 2014 10:11:39 -0700 Subject: [PATCH] [1.7.x] Removed an unused variable. Backport of 684e8a941b from master --- django/utils/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/html.py b/django/utils/html.py index db2a21a4dc..a3de585707 100644 --- a/django/utils/html.py +++ b/django/utils/html.py @@ -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