about summary refs log tree commit diff
path: root/gn3/fs_helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/fs_helpers.py')
-rw-r--r--gn3/fs_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/fs_helpers.py b/gn3/fs_helpers.py
index 73f6567..578269b 100644
--- a/gn3/fs_helpers.py
+++ b/gn3/fs_helpers.py
@@ -41,7 +41,7 @@ def get_dir_hash(directory: str) -> str:
 
 def jsonfile_to_dict(json_file: str) -> Dict:
     """Give a JSON_FILE, return a python dict"""
-    with open(json_file) as _file:
+    with open(json_file, encoding="utf-8") as _file:
         data = json.load(_file)
         return data
     raise FileNotFoundError