From 441aad0aef6192f48ac1440423856483c7fd0458 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Feb 08 2021 08:56:38 +0000 Subject: make builder code similarly tolerant --- diff --git a/builder/kojid b/builder/kojid index 7e239b3..528b1fb 100755 --- a/builder/kojid +++ b/builder/kojid @@ -5557,7 +5557,7 @@ class CreaterepoTask(BaseTaskHandler): # generate repo url list, starting with our local premerge repo repos = ['file://' + localdir + '/'] for repo in external_repos: - if repo['arches'] and arch not in repo['arches'].split(): + if repo.get('arches') and arch not in repo['arches'].split(): # ignore external repo with non-relevant archlist continue ext_url = repo['url']