fixup! pmb.helpers.package.get: prefer right arch binary (!1776)

Check if ret_repo is None before trying to access it.
This commit is contained in:
Oliver Smith 2019-04-21 23:17:31 +02:00
parent 45c9eaa3ea
commit fe731d7f5c
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ def get(args, pkgname, arch, replace_subpkgnames=False):
# Save as result if there was no pmaport, or if the pmaport can not be
# built for the given arch, but there is a binary package for that arch
# (e.g. temp/mesa can't be built for x86_64, but Alpine has it)
if not ret or ret_repo["arch"] == arch:
if not ret or (ret_repo and ret_repo["arch"] == arch):
ret = ret_repo
# Find in APKINDEX (other arches)