Force utf-8 configuraton files reading

Fix #170
This commit is contained in:
Julien Duponchelle 2015-05-01 17:49:16 +02:00
parent 6b70fa9794
commit 151788e48a

View File

@ -135,7 +135,7 @@ class Config(object):
Read the configuration files.
"""
parsed_files = self._config.read(self._files)
parsed_files = self._config.read(self._files, encoding="utf-8")
if not parsed_files:
log.warning("No configuration file could be found or read")
else: