From 0ed7d155635da9f79d4dd67e4889087d3673c6da Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 28 Jan 2015 07:35:27 -0500 Subject: Sorted imports with isort; refs #23860. --- django/utils/html_parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'django/utils/html_parser.py') diff --git a/django/utils/html_parser.py b/django/utils/html_parser.py index 4aff4a9a78..e7f7c11571 100644 --- a/django/utils/html_parser.py +++ b/django/utils/html_parser.py @@ -1,7 +1,8 @@ -from django.utils.six.moves import html_parser as _html_parser import re import sys +from django.utils.six.moves import html_parser as _html_parser + current_version = sys.version_info use_workaround = current_version < (2, 7, 3) -- cgit v1.3