We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e52b60 commit 00cd87dCopy full SHA for 00cd87d
1 file changed
mako/testing/_config.py
@@ -50,7 +50,7 @@ def _parse_cfg_file(filespec: Union[Path, str]):
50
except FileNotFoundError as e:
51
raise MissingConfig(f"No config file found at {filespec}") from e
52
else:
53
- with open(filepath) as f:
+ with open(filepath, encoding="utf-8") as f:
54
cfg.read_file(f)
55
return cfg
56
0 commit comments