diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-01-04 23:08:27 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-01-04 23:08:27 +0100 |
commit | 99e784d223d0e1f11eed647d4805f825e5246696 (patch) | |
tree | 9573159d179987c6ccfa751e64dc533250a34fc6 /xtesting | |
parent | ee4aeafa6a7073c90e0496fb9efe147375197caf (diff) |
Fix incorrect f-string
Change-Id: I463dc155d03b0d5c86b72f4fb7868c1aa7c29a0b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting')
-rw-r--r-- | xtesting/core/campaign.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |