From 84dcadc7d27cb7746ea61d779e91c2742d55f660 Mon Sep 17 00:00:00 2001 From: David Rheinsberg Date: Tue, 26 May 2020 17:45:20 +0200 Subject: [PATCH] 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. --- sources/org.osbuild.files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/org.osbuild.files b/sources/org.osbuild.files index 34d5334a..9a2665a9 100755 --- a/sources/org.osbuild.files +++ b/sources/org.osbuild.files @@ -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):