From 151788e48a95195e6e115c879db05950caa8d587 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 1 May 2015 17:49:16 +0200 Subject: [PATCH] Force utf-8 configuraton files reading Fix #170 --- gns3server/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/config.py b/gns3server/config.py index 9bcc9038..3f69575a 100644 --- a/gns3server/config.py +++ b/gns3server/config.py @@ -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: