From bd10cc5ccdc243e2556d717473936f2c33264a94 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 29 Nov 2012 14:20:20 +0100 Subject: [PATCH] fix macros.py: unnecessary imports --- fnpdjango/templatetags/macros.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fnpdjango/templatetags/macros.py b/fnpdjango/templatetags/macros.py index 181a497..b03e665 100755 --- a/fnpdjango/templatetags/macros.py +++ b/fnpdjango/templatetags/macros.py @@ -52,9 +52,8 @@ through {% extends ... %} tags. """ from django import template -from django.template import resolve_variable, FilterExpression -from django.template.loader import get_template, get_template_from_string, find_template_source -from django.conf import settings +from django.template import FilterExpression +from django.template.loader import get_template import re register = template.Library() -- 2.20.1