Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Sort tasks alphabethically in changelog
· c611dc44
Andreas Tille
authored
Mar 29, 2018
c611dc44
Spacing
· dd6e6fe9
Andreas Tille
authored
Mar 29, 2018
dd6e6fe9
Hide whitespace changes
Inline
Side-by-side
devtools/tasks_diff
View file @
dd6e6fe9
...
...
@@ -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
=
{}
...
...