templatetags/addurlparameter: remove unused reference

resolve_variable isn't available with Django 1.10+, and it's not even
used here, so just drop it from the import line.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2018-04-12 16:34:31 +12:00
parent 5cf6ef57b7
commit 2632820305

View File

@ -4,7 +4,7 @@
#
# Adds GET parameters to the current URL
from django.template import Library, Node, resolve_variable, TemplateSyntaxError, Variable
from django.template import Library, Node, TemplateSyntaxError, Variable
register = Library()