mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
Removed redundant else for Fix for Raven
This commit is contained in:
parent
e8b7a3c363
commit
166121c398
|
@ -22,8 +22,6 @@ from whitenoise.django import DjangoWhiteNoise
|
|||
{% if cookiecutter.use_sentry == "y" -%}
|
||||
if os.environ.get("DJANGO_SETTINGS_MODULE") == "config.settings.production":
|
||||
from raven.contrib.django.raven_compat.middleware.wsgi import Sentry
|
||||
else:
|
||||
pass
|
||||
{%- endif %}
|
||||
|
||||
# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
|
||||
|
@ -45,8 +43,6 @@ application = DjangoWhiteNoise(application)
|
|||
{% if cookiecutter.use_sentry == "y" -%}
|
||||
if os.environ.get("DJANGO_SETTINGS_MODULE") == "config.settings.production":
|
||||
application = Sentry(application)
|
||||
else:
|
||||
pass
|
||||
{%- endif %}
|
||||
|
||||
# Apply WSGI middleware here.
|
||||
|
|
Loading…
Reference in New Issue
Block a user