Commit 9f228395 by McKenzie Welter Committed by McKenzie Welter

read config file strings as unicode

parent d9962e57
......@@ -28,7 +28,7 @@ try:
except KeyError:
CONFIG_FILE = environ['COURSE_DISCOVERY_CFG']
with open(CONFIG_FILE) as f:
with open(CONFIG_FILE, encoding='utf-8') as f:
config_from_yaml = yaml.load(f)
# Remove the items that should be used to update dicts, and apply them separately rather
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment