aboutsummaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index 5ce3e55..bafdbb6 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -49,7 +49,7 @@ def main():
options = parser.parse_args()
cf_path = Path(options.cross_file)
try:
- data = json.loads(cf_path.read_text())
+ data = json.loads(cf_path.read_text(encoding='utf-8'))
real_cf = cf_path.resolve().parent / data['file']
assert real_cf.exists()
env = os.environ.copy()