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 # Mail settings
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
EMAIL_PORT = 1025 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' EMAIL_HOST = 'mailhog'
{% else %} {% else %}
EMAIL_HOST = 'localhost' EMAIL_HOST = 'localhost'
{% endif %} {%- endif %}
{%if cookiecutter.use_mailhog == 'n' -%} {%if cookiecutter.use_mailhog == 'n' -%}
EMAIL_BACKEND = env('DJANGO_EMAIL_BACKEND', EMAIL_BACKEND = env('DJANGO_EMAIL_BACKEND',
default='django.core.mail.backends.console.EmailBackend') default='django.core.mail.backends.console.EmailBackend')