diff --git a/demo/demoproject/templates/home.html b/demo/demoproject/templates/home.html index b46d3cd..ff37d40 100644 --- a/demo/demoproject/templates/home.html +++ b/demo/demoproject/templates/home.html @@ -1,4 +1,3 @@ -{% load url from future %} django-downloadview demo diff --git a/tests/api.py b/tests/api.py index ce2ebfc..f50dccc 100644 --- a/tests/api.py +++ b/tests/api.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- """Test suite around :mod:`django_downloadview.api` and deprecation plan.""" +from importlib import import_module import unittest from six.moves import reload_module as reload import warnings @@ -7,7 +8,6 @@ import warnings from django.core.exceptions import ImproperlyConfigured import django.test from django.test.utils import override_settings -from django.utils.importlib import import_module class APITestCase(unittest.TestCase):