Skip to content

Commit

Permalink
fixed test_depends on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordi Llonch committed Jun 15, 2015
1 parent d53cf4d commit 70bf2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyde/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def __generate_node__(self, node, incremental=False):
for node in node.walk():
logger.debug("Generating Node [%s]", node)
self.events.begin_node(node)
for resource in node.resources:
for resource in sorted(node.resources):
self.__generate_resource__(resource, incremental)
self.events.node_complete(node)

Expand Down

0 comments on commit 70bf2a0

Please sign in to comment.