From 1bf0d8478a6f0dd5cd92d9e241e7fd932d5a0599 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 24 Jan 2019 12:28:55 +1100 Subject: [PATCH] Placate a deprecation warning from Django by importing 'static' from a different module --- wellknowns/views/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wellknowns/views/static.py b/wellknowns/views/static.py index 4dfab5b..e09e3c5 100644 --- a/wellknowns/views/static.py +++ b/wellknowns/views/static.py @@ -1,5 +1,5 @@ from django.views.generic.base import RedirectView -from django.contrib.staticfiles.templatetags.staticfiles import static +from django.templatetags.static import static def redirect_to_static(file):