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 = [] lst = []
for distro in DISTROS: for distro in DISTROS:
distro, star, count = distro.rpartition('*') distro, star, count = distro.partition('*')
if star: if star:
count = int(count) count = int(count)
else: else:

Loading…
Cancel
Save