Skip to content

Commit

Permalink
adds Django 1.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
soynatan committed Nov 7, 2016
1 parent 06f7f19 commit 56f4ec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ This app allows you to keep track of every action taken by your users.
]
```

3. Add django-easy-audit's middleware to your MIDDLEWARE_CLASSES setting like this:
3. Add django-easy-audit's middleware to your MIDDLEWARE (or MIDDLEWARE_CLASSES) setting like this:

```
MIDDLEWARE_CLASSES = (
MIDDLEWARE = (
...
'easyaudit.middleware.easyaudit.EasyAuditMiddleware',
)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ Quick start
'easyaudit',
]

2. Add django-easy-audit's middleware to your MIDDLEWARE_CLASSES setting like this::
2. Add django-easy-audit's middleware to your MIDDLEWARE (or MIDDLEWARE_CLASSES in Django <= 1.9) setting like this::

MIDDLEWARE_CLASSES = (
MIDDLEWARE = (
...
'easyaudit.middleware.easyaudit.EasyAuditMiddleware',
)
Expand Down

0 comments on commit 56f4ec5

Please sign in to comment.