Message ID | 20230601192928.809434-2-ashelat@redhat.com |
---|---|
State | New |
Headers | show |
Series | [01/10] rteval: Use f-strings in rtevalclient.py | expand |
diff --git a/rteval/rtevalConfig.py b/rteval/rtevalConfig.py index de88924642ca..41f1a567720f 100644 --- a/rteval/rtevalConfig.py +++ b/rteval/rtevalConfig.py @@ -115,7 +115,7 @@ class rtevalCfgSection: "Simple method for dumping config when object is used as a string" if not self.__cfgdata: return "# empty" - return "\n".join(["%s: %s" % (k, v) for k, v in list(self.__cfgdata.items())]) + "\n" + return "\n".join([f"{k}: {v}" for k, v in list(self.__cfgdata.items())]) + "\n" def __setattr__(self, key, val):
Signed-off-by: Anubhav Shelat <ashelat@redhat.com> --- rteval/rtevalConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)