From: Cédric Ollivier Date: Tue, 4 Jan 2022 22:08:27 +0000 (+0100) Subject: Fix incorrect f-string X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F73141%2F1;p=functest-xtesting.git Fix incorrect f-string Change-Id: I463dc155d03b0d5c86b72f4fb7868c1aa7c29a0b Signed-off-by: Cédric Ollivier --- 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