Fix debug setting

This commit is contained in:
Nathan Chapman 2023-04-09 11:08:55 -06:00
parent a405ab44c7
commit dc6596e45d

View File

@ -103,8 +103,8 @@ MIDDLEWARE = [
] ]
if DEBUG: if DEBUG:
INSTALLED_APPS + ['debug_toolbar'] INSTALLED_APPS += ['debug_toolbar']
MIDDLEWARE + ['debug_toolbar.middleware.DebugToolbarMiddleware'] MIDDLEWARE += ['debug_toolbar.middleware.DebugToolbarMiddleware']
ROOT_URLCONF = 'ptcoffee.urls' ROOT_URLCONF = 'ptcoffee.urls'