8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-23 20:03:11 +00:00

templatetags python2 complient

This commit is contained in:
Gabriel Le Bouder 2018-08-10 20:38:17 +02:00 committed by chirac
parent 6b484da4d3
commit e797eb89b2

View file

@ -227,7 +227,9 @@ def acl_history_filter(parser, token):
def acl_app_filter(parser, token):
"""Templatetag for acl checking on applications."""
try:
tag_name, *app_name = token.split_contents()
contents = token.split_contents()
tag_name = contents[0]
app_name = contents[1:]
except ValueError:
raise template.TemplateSyntaxError(
"%r tag require 1 argument: an application"