Use django.utils.six instead of six

This commit is contained in:
Ville Skyttä
2015-12-15 12:41:21 +02:00
parent 2103024af1
commit 7043dc9a03

View File

@@ -2,10 +2,10 @@ from __future__ import with_statement, unicode_literals
import os import os
import codecs import codecs
from importlib import import_module from importlib import import_module
from six.moves.urllib.request import url2pathname
from django.core.files.base import ContentFile from django.core.files.base import ContentFile
from django.utils.safestring import mark_safe from django.utils.safestring import mark_safe
from django.utils.six.moves.urllib.request import url2pathname
from django.template.loader import render_to_string from django.template.loader import render_to_string
from compressor.cache import get_hexdigest, get_mtime from compressor.cache import get_hexdigest, get_mtime