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 Reload the controller configuration from disk
""" """
if not os.path.exists(self._config_file): if not os.path.exists(self._config_file):
return self.save()
try: try:
with open(self._config_file) as f: with open(self._config_file) as f:
data = json.load(f) data = json.load(f)