mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Switch MIDDLEWARE from a tuple to a list
This is a recommended change starting with Django 1.9.
This commit is contained in:
parent
2ac014baa5
commit
d7dd32af92
1 changed files with 2 additions and 2 deletions
|
|
@ -18,13 +18,13 @@ INSTALLED_APPS = [
|
|||
"auditlog_tests",
|
||||
]
|
||||
|
||||
MIDDLEWARE = (
|
||||
MIDDLEWARE = [
|
||||
"django.middleware.common.CommonMiddleware",
|
||||
"django.contrib.sessions.middleware.SessionMiddleware",
|
||||
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
||||
"django.contrib.messages.middleware.MessageMiddleware",
|
||||
"auditlog.middleware.AuditlogMiddleware",
|
||||
)
|
||||
]
|
||||
|
||||
DATABASES = {
|
||||
"default": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue