Simplify some code to have one loop, rather than two.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16959 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2011-10-11 20:43:11 +00:00
parent a71bd3e0c9
commit 3e940cdfd9
1 changed files with 4 additions and 3 deletions

View File

@ -814,10 +814,11 @@ class NodeList(list):
bits = []
for node in self:
if isinstance(node, Node):
bits.append(self.render_node(node, context))
bit = self.render_node(node, context)
else:
bits.append(node)
return mark_safe(u''.join([force_unicode(b) for b in bits]))
bit = node
bits.append(force_unicode(bit))
return mark_safe(u''.join(bits))
def get_nodes_by_type(self, nodetype):
"Return a list of all nodes of the given type"