sources: convert f-string to normal string
Convert an f-string to a normal string, since we do not use any format specifier in it.
This commit is contained in:
parent
b659aa72ed
commit
84dcadc7d2
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ def get_rhsm_secrets():
|
|||
rhsm_secrets['ssl_client_cert'] = cert
|
||||
return rhsm_secrets
|
||||
|
||||
raise RuntimeError(f"no matching rhsm key and cert")
|
||||
raise RuntimeError("no matching rhsm key and cert")
|
||||
|
||||
|
||||
def main(options, checksums, cache, output):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue