dom0/core: fix return value of QubesHVM.run()
This commit is contained in:
parent
9db9d8b6c2
commit
f271ad8463
@ -2446,7 +2446,7 @@ class QubesHVm(QubesVm):
|
|||||||
if self.qrexec_installed:
|
if self.qrexec_installed:
|
||||||
if 'gui' in kwargs and kwargs['gui']==False:
|
if 'gui' in kwargs and kwargs['gui']==False:
|
||||||
command = "nogui:" + command
|
command = "nogui:" + command
|
||||||
super(QubesHVm, self).run(command, **kwargs)
|
return super(QubesHVm, self).run(command, **kwargs)
|
||||||
else:
|
else:
|
||||||
raise QubesException("Needs qrexec agent installed in VM to use this function. See also qvm-prefs.")
|
raise QubesException("Needs qrexec agent installed in VM to use this function. See also qvm-prefs.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user