ci: fix incorrect partition/rpartition from 8a4caea84f

issue510
David Wilson 5 years ago
parent 696cee57dd
commit 49a8745a45

@ -162,7 +162,7 @@ def make_containers():
lst = []
for distro in DISTROS:
distro, star, count = distro.rpartition('*')
distro, star, count = distro.partition('*')
if star:
count = int(count)
else:

Loading…
Cancel
Save