Moved decorator to proper util module.

This commit is contained in:
Jannis Leidel
2011-05-13 11:06:51 +02:00
parent f09c85e59a
commit f430422649
5 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ from compressor.exceptions import CompressorError, UncompressableFileError
from compressor.filters import CompilerFilter
from compressor.storage import default_storage
from compressor.utils import get_class, staticfiles
from compressor.utils.cache import cached_property
from compressor.utils.decorators import cached_property
class Compressor(object):
"""

View File

@@ -4,7 +4,7 @@ from django.utils.encoding import smart_unicode
from compressor.exceptions import ParserError
from compressor.parser import ParserBase
from compressor.utils.cache import cached_property
from compressor.utils.decorators import cached_property
class BeautifulSoupParser(ParserBase):

View File

@@ -4,7 +4,7 @@ from django.core.exceptions import ImproperlyConfigured
from compressor.exceptions import ParserError
from compressor.parser import ParserBase
from compressor.utils.cache import cached_property
from compressor.utils.decorators import cached_property
class Html5LibParser(ParserBase):

View File

@@ -4,7 +4,7 @@ from django.utils.encoding import smart_unicode
from compressor.exceptions import ParserError
from compressor.parser import ParserBase
from compressor.utils.cache import cached_property
from compressor.utils.decorators import cached_property
class LxmlParser(ParserBase):