core: fix is_paused method
This commit is contained in:
parent
6da608783f
commit
7a3bce6c61
@ -810,7 +810,8 @@ class QubesVm(object):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def is_paused(self):
|
def is_paused(self):
|
||||||
if self.libvirt_domain and self.libvirt_domain.state() == libvirt.VIR_DOMAIN_PAUSED:
|
if self.libvirt_domain and self.libvirt_domain.state()[0] == \
|
||||||
|
libvirt.VIR_DOMAIN_PAUSED:
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
Loading…
Reference in New Issue
Block a user