From e794b60c8d97f11bdd490822ad744726fecd9754 Mon Sep 17 00:00:00 2001 From: mvdwaeter Date: Thu, 23 Jun 2011 08:36:03 -0700 Subject: [PATCH] Bugfix on import of htmlparser on case-insensitive file-systems (e.g. Mac) --- compressor/parser/htmlparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressor/parser/htmlparser.py b/compressor/parser/htmlparser.py index f3de683..f01a200 100644 --- a/compressor/parser/htmlparser.py +++ b/compressor/parser/htmlparser.py @@ -1,4 +1,4 @@ -from HTMLParser import HTMLParser +from ..HTMLParser import HTMLParser from django.utils.encoding import smart_unicode from compressor.exceptions import ParserError from compressor.parser import ParserBase