Remove whitespaces

This commit is contained in:
Francesco Siddi 2016-11-25 12:45:29 +01:00
parent a93d9be632
commit c73ad07e83

View File

@ -20,8 +20,8 @@ def jstree_parse_node(node, children=None):
node_type = node.properties.content_type
parsed_node = dict(
id="n_{0}".format(node._id),
a_attr={ "href" : url_for_node(node=node) },
li_attr={ "data-node-type" : node.node_type },
a_attr={"href": url_for_node(node=node)},
li_attr={"data-node-type": node.node_type},
text=Markup.escape(node.name),
type=node_type,
children=False)