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

Bump to version 1.2.dev3

This commit is contained in:
Jeremy 2014-11-15 16:47:30 -07:00
parent 5a7e482dac
commit cb913416ef
2 changed files with 2 additions and 2 deletions

View File

@ -753,7 +753,7 @@ class VirtualBox(IModule):
for line in result.splitlines():
vmname, uuid = line.rsplit(' ', 1)
vmname = vmname.strip('"')
extra_data = self._execute_vboxmanage([self._vboxmanage_path, "getextradata", vmname, "GNS3/Clone"]).strip()
extra_data = self._execute_vboxmanage([vboxmanage_path, "getextradata", vmname, "GNS3/Clone"]).strip()
if not extra_data == "Value: yes":
vms.append(vmname)

View File

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