mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-17 06:48:18 +00:00
@ -805,7 +805,11 @@ class QemuVM(BaseVM):
|
||||
"""
|
||||
|
||||
if self._process:
|
||||
return True
|
||||
print(self._process.returncode)
|
||||
if self._process.returncode is None:
|
||||
return True
|
||||
else:
|
||||
self._process = None
|
||||
return False
|
||||
|
||||
def command(self):
|
||||
|
Reference in New Issue
Block a user