From bb7e0d1d1ef28926ffa74205e9175a24be9d4f7b Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 17 Jun 2025 10:27:40 -0400 Subject: [PATCH] Correct mistake in the previous commit --- imgutil/imgutil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgutil/imgutil b/imgutil/imgutil index f5687655..6ecc7295 100644 --- a/imgutil/imgutil +++ b/imgutil/imgutil @@ -1128,7 +1128,7 @@ def fingerprint_host_el(args, hostpath='/'): ts = rpm.TransactionSet(hostpath) rpms = ts.dbMatch('provides', 'system-release') for inf in rpms: - if 'el8' not in inf.release and 'el7' not in inf.release and 'el9' not in inf.release 'el10' not in inf.release: + if 'el8' not in inf.release and 'el7' not in inf.release and 'el9' not in inf.release and 'el10' not in inf.release: continue osname = inf.name version = inf.version