mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-21 23:03:08 +00:00
typo fix
Summary: Wrong brace used for a str.format() call - caused a crash when no universal test image is found for a compose. Test Plan: Check that tests still run. Ideally try testing a compose with no universal image (e.g. a Rawhide nightly with no boot.iso). Reviewers: garretraziel, kparal Reviewed By: kparal Subscribers: tflink Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D384
This commit is contained in:
parent
a6d48fb3aa
commit
093c2b5be7
@ -162,7 +162,7 @@ def jobs_from_fedfind(ff_release, arches=VERSIONS):
|
|||||||
bestimg = img
|
bestimg = img
|
||||||
bestscore = score
|
bestscore = score
|
||||||
if not bestimg:
|
if not bestimg:
|
||||||
print("No universal tests image found for {0)!".format(arch))
|
print("No universal tests image found for {0}!".format(arch))
|
||||||
continue
|
continue
|
||||||
print("Running universal tests for {0} with {1}!".format(
|
print("Running universal tests for {0} with {1}!".format(
|
||||||
arch, bestimg.desc))
|
arch, bestimg.desc))
|
||||||
|
Loading…
Reference in New Issue
Block a user