ci: fix incorrect partition/rpartition from 8a4caea84f

This commit is contained in:
David Wilson 2019-01-29 17:39:46 +00:00
parent 696cee57dd
commit 49a8745a45
1 changed files with 1 additions and 1 deletions

View File

@ -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: