Skip to content
Commits on Source (2)
......@@ -105,7 +105,7 @@ def compare_tasks(tasks, tasks_compare, taskprefix):
first_print = True
for task in tasks:
for task in sorted(tasks):
if not task in tasks_compare:
continue
......@@ -162,7 +162,7 @@ def compare_tasks(tasks, tasks_compare, taskprefix):
first_print = False
print("* Removed metapackages:")
for removedtask in removed_tasks:
print(" -{0}-{1}".format(taskprefix, removedtask))
print(" - {0}-{1}".format(taskprefix, removedtask))
def load_tasks(tasks_path):
tasks = {}
......