Remove reference to removed settings variable

This commit is contained in:
Ramon Wenger 2023-12-14 17:16:08 +01:00
parent 8b080abe20
commit 992b9945e5
1 changed files with 1 additions and 4 deletions

View File

@ -2,8 +2,5 @@ from django.conf import settings
def settings_context(request):
context = {
'RAVEN_DSN_JS': settings.RAVEN_DSN_JS,
'DEBUG': settings.DEBUG
}
context = {"DEBUG": settings.DEBUG}
return context