From a28356f07066807fdf0e64124191920d033ff8f3 Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Tue, 5 Feb 2019 17:54:38 +0100 Subject: [PATCH] fixing copy past error --- ippisite/ippidb/templatetags/customtags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ippisite/ippidb/templatetags/customtags.py b/ippisite/ippidb/templatetags/customtags.py index 77974a83..dc6ab2bf 100644 --- a/ippisite/ippidb/templatetags/customtags.py +++ b/ippisite/ippidb/templatetags/customtags.py @@ -106,4 +106,4 @@ def bootstrap_core(object): @register.filter('startswith') def startswith(text, starts): - return bootstrap(text.startswith(starts)) + return text.startswith(starts) -- GitLab