From 4a006c8819bf7b94c71dde028b2c624c199582d1 Mon Sep 17 00:00:00 2001 From: RaddishIoW Date: Thu, 25 Apr 2019 11:18:10 +0100 Subject: [PATCH] Update tests.py Updated to use django.urls for compatability with Django >=2.0 --- django_propeller/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_propeller/tests.py b/django_propeller/tests.py index 66acb81..8bfde02 100644 --- a/django_propeller/tests.py +++ b/django_propeller/tests.py @@ -9,7 +9,7 @@ from django.forms.formsets import formset_factory from django.template import Context, Template from django.test import TestCase -from django.core.urlresolvers import NoReverseMatch +from django.urls import NoReverseMatch from .propeller import PROPELLER_SET_REQUIRED_SET_DISABLED from .exceptions import PropellerError, PropellerException