From 99e784d223d0e1f11eed647d4805f825e5246696 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Tue, 4 Jan 2022 23:08:27 +0100 Subject: [PATCH] Fix incorrect f-string MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I463dc155d03b0d5c86b72f4fb7868c1aa7c29a0b Signed-off-by: Cédric Ollivier --- xtesting/core/campaign.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtesting/core/campaign.py b/xtesting/core/campaign.py index 5c5744ef..dbde42df 100644 --- a/xtesting/core/campaign.py +++ b/xtesting/core/campaign.py @@ -81,7 +81,7 @@ class Campaign(): "^{os.environ['HTTP_DST_URL']}/*", '', output["results"][i]["details"]["links"][j]) Campaign.__logger.debug("data to archive: \n%s", output) - with open("{env.get('BUILD_TAG')}.json", "w", + with open(f"{env.get('BUILD_TAG')}.json", "w", encoding='utf-8') as dfile: json.dump(output, dfile) except Exception: # pylint: disable=broad-except -- 2.16.6