Fix randomized pkg providers for python < 3.6 (#1446)

This commit is contained in:
Oliver Smith 2018-04-28 21:32:00 +00:00 committed by GitHub
parent b90a3c1054
commit a1598dc55d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ def providers(args, package, arch=None, must_exist=True, indexes=None):
arch = arch or args.arch_native
indexes = pmb.helpers.repo.apkindex_files(args, arch)
ret = {}
ret = collections.OrderedDict()
for path in indexes:
# Skip indexes not providing the package
index_packages = parse(args, path)