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:
David Rheinsberg 2020-05-26 17:45:20 +02:00
parent b659aa72ed
commit 84dcadc7d2

View file

@ -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):