我正在为项目使用django-compressor,但是当我运行./manage compress
命令时,我得到了一个错误列表,如:
Invalid template /home/somepath: 'some_template_tags' is not a valid tag library: ImportError raised loading postman.templatetags.some_template_tags: cannot import name SomeLibrary
我没有任何额外信息。此外,应用程序已添加到INSTALLED_APPS
,模板标记在没有django-compressor的情况下正常运行。
更新
这是settings.py
文件:
INSTALLED_APPS = (
'django.contrib.staticfiles',
'cms',
'mptt',
'menus',
'south',
'sekizai',
'classytags',
'postman',
# More apps
'compressor',
)
# More lines
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder',
)
答案 0 :(得分:0)
问题是邮递员。我在postman / models.py文件中用get_user_model()
替换了函数User
: