use sorted(archs) to not confuse tests
This commit is contained in:
parent
0eebe53b27
commit
f8f373e2b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue