5 lines
176 B
Python
5 lines
176 B
Python
try:
|
|
from django.urls import reverse, resolve, NoReverseMatch # NOQA
|
|
except ImportError:
|
|
from django.core.urlresolvers import reverse, resolve, NoReverseMatch # NOQA
|