remove whitespace

This commit is contained in:
shireenrao 2016-05-11 21:42:46 -04:00
parent 87926027f6
commit 7614180e00

View File

@ -24,11 +24,11 @@ SECRET_KEY = env('DJANGO_SECRET_KEY', default='CHANGEME!!!')
# Mail settings
# ------------------------------------------------------------------------------
EMAIL_PORT = 1025
{% if cookiecutter.use_docker == 'y' and cookiecutter.use_mailhog == 'y' %}
{% if cookiecutter.use_docker == 'y' and cookiecutter.use_mailhog == 'y' -%}
EMAIL_HOST = 'mailhog'
{% else %}
EMAIL_HOST = 'localhost'
{% endif %}
{%- endif %}
{%if cookiecutter.use_mailhog == 'n' -%}
EMAIL_BACKEND = env('DJANGO_EMAIL_BACKEND',
default='django.core.mail.backends.console.EmailBackend')