Merge pull request #1124 from JosephKiranBabu/python3-unicode-support

Make Python 3 able to read settings files with Unicode characters
This commit is contained in:
Adam Tauber 2018-01-12 10:58:23 +01:00 committed by GitHub
commit 8511e64f35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ if not settings_path:
raise Exception('settings.yml not found')
# load settings
with open(settings_path) as settings_yaml:
with open(settings_path, 'rb') as settings_yaml:
settings = load(settings_yaml)
'''