aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
diff options
context:
space:
mode:
authorandre.schmid <andre.schmid@est.tech>2021-10-15 15:07:41 +0100
committerMichael Morris <michael.morris@est.tech>2021-10-18 12:13:06 +0000
commit005d5dee8be436246276195067c67ce68d68c2d7 (patch)
treecee8448bd71fa24a17f724de46ea84ea6e7840cc /catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
parent1b61e72f6506de7c1f64098dd25adf7af7b31dc1 (diff)
Force encoding while reading files in init scripts
To avoid system dependency by using the default encoding, this change sets the encoding when opening files in python scripts to "UTF-8". Change-Id: Ib35f4300f10dea309fcc2967448bd80cad0b335f Issue-ID: SDC-3761 Signed-off-by: André Schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py')
-rw-r--r--catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
index 6537b1cdd0..ed7fb753e2 100644
--- a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
+++ b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
@@ -11,7 +11,7 @@ class TypesToUpdate:
def load_files(self, files):
for file in files:
- with open(file, 'r') as stream:
+ with open(file, 'r', encoding='utf-8') as stream:
_types = json.load(stream)
for type_key, type_value in _types.items():
self.types_list[type_key] = type_value