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

Fixes topology loading issue.

This commit is contained in:
grossmj 2014-04-10 15:04:39 -06:00
parent b614aa8290
commit 4ab9b4acc7
2 changed files with 8 additions and 7 deletions

View File

@ -200,7 +200,8 @@ class IOU(IModule):
self._iouyap = request["iouyap"] self._iouyap = request["iouyap"]
log.info("iouyap path set to {}".format(self._iouyap)) log.info("iouyap path set to {}".format(self._iouyap))
if "working_dir" in request and self._working_dir != request["working_dir"]: if "working_dir" in request:
if self._working_dir != request["working_dir"]:
self._working_dir = request["working_dir"] self._working_dir = request["working_dir"]
log.info("this server is local with working directory path to {}".format(self._working_dir)) log.info("this server is local with working directory path to {}".format(self._working_dir))
for iou_id in self._iou_instances: for iou_id in self._iou_instances:

View File

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version # or negative for a release candidate or beta (after the base version
# number has been incremented) # number has been incremented)
__version__ = "1.0a2.dev1" __version__ = "1.0a2.dev2"
__version_info__ = (1, 0, 0, -99) __version_info__ = (1, 0, 0, -99)