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 759d9fc commit 2a1b8d9Copy full SHA for 2a1b8d9
library/config.py
@@ -28,7 +28,7 @@
28
29
30
def load_yaml(configfile):
31
- with open(configfile, "r") as stream:
+ with open(configfile, "rt", encoding='utf8') as stream:
32
yamlconfig = yaml.safe_load(stream)
33
return yamlconfig
34
0 commit comments