mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
parent
c6dfdb6f68
commit
22997ded2f
1 changed files with 4 additions and 1 deletions
|
|
@ -2,7 +2,10 @@ import json
|
|||
|
||||
from django.conf import settings
|
||||
from django.core import urlresolvers
|
||||
from django.urls.exceptions import NoReverseMatch
|
||||
try:
|
||||
from django.urls.exceptions import NoReverseMatch
|
||||
except ImportError:
|
||||
from django.core.urlresolvers import NoReverseMatch
|
||||
|
||||
MAX = 75
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue