Fix compressor section on common.py

This commit is contained in:
Alexandre Provencio 2016-08-31 12:52:11 -03:00
parent 043ff3d8dc
commit 31c63f0d3f

View File

@ -238,9 +238,9 @@ else:
########## END CELERY
{% endif %}
{%- if cookiecutter.use_compressor == 'y'-%}
# django-compressor
# ------------------------------------------------------------------------------
{% if cookiecutter.use_compressor == 'y'-%}
INSTALLED_APPS += ("compressor", )
STATICFILES_FINDERS += ("compressor.finders.CompressorFinder", )
{%- endif %}