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

Back to the major.minor version for config files. Ref https://github.com/GNS3/gns3-gui/issues/2756

This commit is contained in:
grossmj 2019-04-14 21:31:40 +07:00
parent 6dbb992513
commit fb470dd4b5
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ class Config:
self._watch_callback = []
appname = "GNS3"
version = "{}.{}.{}".format(__version_info__[0], __version_info__[1], __version_info__[2])
version = "{}.{}".format(__version_info__[0], __version_info__[1])
if sys.platform.startswith("win"):

View File

@ -128,7 +128,7 @@ class Controller:
except (ComputeError, aiohttp.web.HTTPError, OSError):
pass
await self.gns3vm.exit_vm()
self.save()
#self.save()
self._computes = {}
self._projects = {}