Skip to content

Commit

Permalink
Stray tracing print.
Browse files Browse the repository at this point in the history
  • Loading branch information
starcraftman committed Oct 6, 2015
1 parent 98b705a commit f466d5f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pakit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,7 @@ def order_tasks(recipe_names, task_class):
for recipe_name in recipe_names:
add_deps_for(recipe_name, graph)

print(graph)
ordered_recipes = topological_sort(graph)
return [task_class(recipe_name) for recipe_name in ordered_recipes]
return [task_class(recipe_name) for recipe_name in topological_sort(graph)]


def parse_tasks(args):
Expand Down

0 comments on commit f466d5f

Please sign in to comment.