1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Create the controller config at first controller start

This commit is contained in:
Julien Duponchelle 2016-06-23 12:17:31 +02:00
parent 4c3bfde97e
commit 5a410155f7
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -78,8 +78,9 @@ class Controller:
"""
Reload the controller configuration from disk
"""
if not os.path.exists(self._config_file):
return
self.save()
try:
with open(self._config_file) as f:
data = json.load(f)