Change django.core.urlresolvers imports

-- compatible with 1.11 --
This commit is contained in:
Ludovic Stephan 2019-03-19 10:18:56 +01:00
parent 2b3a8760ff
commit 5fd4cb5c78
9 changed files with 9 additions and 9 deletions

View file

@ -10,13 +10,13 @@ from django.conf import settings
from django.contrib import messages
from django.core import serializers
from django.core.exceptions import NON_FIELD_ERRORS
from django.core.urlresolvers import reverse
from django.db import transaction
from django.db.models import Count, Prefetch
from django.forms.models import inlineformset_factory
from django.http import HttpResponseBadRequest, HttpResponseRedirect, JsonResponse
from django.shortcuts import get_object_or_404, render
from django.template.defaultfilters import pluralize
from django.urls import reverse
from django.utils import formats, timezone
from django.views.generic.list import ListView