From 21020a27536bd2ba581b0393041a2f932a0870a8 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 2 Feb 2015 10:49:46 +0100 Subject: [PATCH] Fix server configuration path --- gns3server/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gns3server/config.py b/gns3server/config.py index 56e26f4b..1729f9aa 100644 --- a/gns3server/config.py +++ b/gns3server/config.py @@ -66,6 +66,7 @@ class Config(object): # 4: /etc/xdg/GNS3.conf # 5: server.conf in the current working directory + appname = "gns3.net" home = os.path.expanduser("~") self._cloud_file = os.path.join(home, ".config", appname, "cloud.conf") filename = "server.conf" @@ -99,7 +100,7 @@ class Config(object): parsed_files = self._config.read(self._files) if not parsed_files: - log.warning("no configuration file could be found or read") + log.warning("No configuration file could be found or read") def get_default_section(self): """