From 2629f583e5d548d258ea2945afe33c02ae0ae2d8 Mon Sep 17 00:00:00 2001 From: Hongbo <12580159+ya0guang@users.noreply.github.com> Date: Wed, 27 Mar 2024 20:53:35 -0400 Subject: [PATCH] add back `f` in an f-string --- fetch-macOS-v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-macOS-v2.py b/fetch-macOS-v2.py index 250a63f..851a19b 100755 --- a/fetch-macOS-v2.py +++ b/fetch-macOS-v2.py @@ -374,7 +374,7 @@ def action_selfcheck(args): if product_default[INFO_PRODUCT] != valid_default[INFO_PRODUCT]: # Product-only MLB can give the same value with valid default MLB. # This is not an error for all models, but for our chosen code it is. - print('ERROR: Valid and product MLB give mismatch, got {product_default[INFO_PRODUCT]} and {valid_default[INFO_PRODUCT]}') + print(f'ERROR: Valid and product MLB give mismatch, got {product_default[INFO_PRODUCT]} and {valid_default[INFO_PRODUCT]}') return 1 print('SUCCESS: Found no discrepancies with MLB validation algorithm!')