summaryrefslogtreecommitdiff
path: root/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py')
-rw-r--r--tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py b/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py
index c878f97716..2743f67eea 100644
--- a/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py
+++ b/tests/regressiontests/urlpatterns_reverse/included_namespace_urls.py
@@ -1,6 +1,10 @@
+from __future__ import absolute_import
+
from django.conf.urls import patterns, url, include
-from namespace_urls import URLObject
-from views import view_class_instance
+
+from .namespace_urls import URLObject
+from .views import view_class_instance
+
testobj3 = URLObject('testapp', 'test-ns3')