1
0
mirror of https://github.com/django/django.git synced 2025-10-30 00:56:09 +00:00

remove a bunch of unnescesarry iterkeys() calls

This commit is contained in:
Alex Gaynor
2012-08-08 07:33:15 -07:00
parent 576ec12f8e
commit 4c97101b1f
25 changed files with 42 additions and 42 deletions

View File

@@ -1189,7 +1189,7 @@ def templatetag(parser, token):
if tag not in TemplateTagNode.mapping:
raise TemplateSyntaxError("Invalid templatetag argument: '%s'."
" Must be one of: %s" %
(tag, list(six.iterkeys(TemplateTagNode.mapping))))
(tag, list(TemplateTagNode.mapping)))
return TemplateTagNode(tag)
@register.tag