From ec969efa7e18361bbdf399b1df0dda08f6f0e461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Bryon?= Date: Mon, 14 Mar 2016 15:54:56 +0100 Subject: [PATCH] Improved support of Python-3.5 and Django-1.9. Refs #112, refs #113. --- demo/demoproject/templates/home.html | 1 - tests/api.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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):