mirror of https://git.48k.eu/ogclient
uefi: add missing f-string prefix in _find_bootentry() error
Add missing f-string prefix for proper string interpolation in the error message of _find_bootentry()master
parent
72406a7d89
commit
ccdcb7bfc7
|
@ -25,7 +25,7 @@ def _find_bootentry(entries, label):
|
|||
if entry['description'] == label:
|
||||
return entry
|
||||
else:
|
||||
raise OgError('Boot entry {label} not found')
|
||||
raise OgError(f'Boot entry {label} not found')
|
||||
|
||||
|
||||
def _strip_boot_prefix(entry):
|
||||
|
|
Loading…
Reference in New Issue