mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-12 12:28:23 +00:00
Fixes replace errors. Fixes #284.
This commit is contained in:
@ -483,9 +483,9 @@ class QemuVM(BaseVM):
|
|||||||
|
|
||||||
if not sys.platform.startswith("linux"):
|
if not sys.platform.startswith("linux"):
|
||||||
if "-no-kvm" in options:
|
if "-no-kvm" in options:
|
||||||
options = options.replace("-no-kvm")
|
options = options.replace("-no-kvm", "")
|
||||||
if "-enable-kvm" in options:
|
if "-enable-kvm" in options:
|
||||||
options = options.replace("-enable-kvm")
|
options = options.replace("-enable-kvm", "")
|
||||||
self._options = options.strip()
|
self._options = options.strip()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Reference in New Issue
Block a user