From f8f373e2b69235dd4f5a91e290fb28955fe363ff Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Jun 01 2017 07:39:23 +0000 Subject: use sorted(archs) to not confuse tests --- diff --git a/koji/tasks.py b/koji/tasks.py index 9a4080e..05606cb 100644 --- a/koji/tasks.py +++ b/koji/tasks.py @@ -365,7 +365,7 @@ class BaseTaskHandler(object): else: # no overlap raise koji.BuildError("host %s (%s) does not support any arches of tag %s (%s)" % \ - (host['name'], ', '.join(host_arches), tag['name'], ', '.join(tag_arches))) + (host['name'], ', '.join(sorted(host_arches)), tag['name'], ', '.join(sorted(tag_arches)))) def getRepo(self, tag): """