Skip to content
Snippets Groups Projects
Commit d42b6952 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

scheduling: fix a remaining case where we would generate "::" in task

Spotted in the wild, the fix is simple.
parent 860b128e
No related branches found
No related tags found
No related merge requests found
......@@ -127,5 +127,5 @@
variant_filters,
all_variants,
):
if sub:
if sub and kv:
yield f"{kv}:{sub}"
......@@ -131,4 +131,6 @@
yield f"{kv}:{sub}"
elif sub:
yield sub
else:
yield kv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment