[PATCH] templates: Use 'static' rather than 'statictags' library

Andrew Donnellan ajd at linux.ibm.com
Fri Sep 13 21:19:43 AEST 2019


statictags is being renamed to static, use of {% load statictags %} is
deprecated and will break in Django 3.

Signed-off-by: Andrew Donnellan <ajd at linux.ibm.com>
---
 templates/base.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/base.html b/templates/base.html
index 501208f01e59..802ea98b0745 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,4 +1,4 @@
-{% load staticfiles %}
+{% load static %}
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
-- 
2.20.1



More information about the Patchwork mailing list