mirror of https://github.com/kholia/OSX-KVM.git
add back `f` in an f-string
This commit is contained in:
parent
a9b20147de
commit
2629f583e5
|
@ -374,7 +374,7 @@ def action_selfcheck(args):
|
||||||
if product_default[INFO_PRODUCT] != valid_default[INFO_PRODUCT]:
|
if product_default[INFO_PRODUCT] != valid_default[INFO_PRODUCT]:
|
||||||
# Product-only MLB can give the same value with valid default MLB.
|
# 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.
|
# 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
|
return 1
|
||||||
|
|
||||||
print('SUCCESS: Found no discrepancies with MLB validation algorithm!')
|
print('SUCCESS: Found no discrepancies with MLB validation algorithm!')
|
||||||
|
|
Loading…
Reference in New Issue