ci: fix incorrect partition/rpartition from 8a4caea84f
This commit is contained in:
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…
Reference in New Issue