Handle API version key in VirtualBox 7. Fixes #2266

pull/2267/head
grossmj 9 months ago
parent df9d642a56
commit 77744cc31d

@ -80,6 +80,9 @@ class VirtualBoxGNS3VM(BaseGNS3VM):
except ValueError:
continue
self._system_properties[name.strip()] = value.strip()
if "API Version" in self._system_properties:
# API version is not consistent between VirtualBox versions, the key is named "API Version" in VirtualBox 7
self._system_properties["API version"] = self._system_properties.pop("API Version")
async def _check_requirements(self):
"""

Loading…
Cancel
Save