X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fmodel%2Fmem2raw.py;fp=resources%2Flibraries%2Fpython%2Fmodel%2Fmem2raw.py;h=543ee935e24275b12bf2f47cd3d83d455021a083;hp=c3145b9f3113a25458011e3e940fd1162fd09a98;hb=5feb31a42f13c2e34df4b76a0b722b3fa7c439e0;hpb=cd1f9904e173ecb34836b33cb551ab9b9d378e18 diff --git a/resources/libraries/python/model/mem2raw.py b/resources/libraries/python/model/mem2raw.py index c3145b9f31..543ee935e2 100644 --- a/resources/libraries/python/model/mem2raw.py +++ b/resources/libraries/python/model/mem2raw.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Cisco and/or its affiliates. +# Copyright (c) 2022 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -141,5 +141,5 @@ def write_raw_output(raw_file_path, raw_data): """ raw_data = _pre_serialize_root(raw_data) os.makedirs(os.path.dirname(raw_file_path), exist_ok=True) - with open(raw_file_path, u"xt", encoding="utf-8") as file_out: + with open(raw_file_path, u"wt", encoding="utf-8") as file_out: json.dump(raw_data, file_out, indent=1)