1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Turn off configuration parser interpolation

This commit is contained in:
Julien Duponchelle 2015-05-05 11:53:33 +02:00
parent a3f00e1f45
commit 4b21135ba7

View File

@ -92,7 +92,7 @@ class Config(object):
def clear(self):
"""Restart with a clean config"""
self._config = configparser.ConfigParser()
self._config = configparser.RawConfigParser()
# Override config from command line even if we modify the config file and live reload it.
self._override_config = {}