From 8563d1aa7d890b8a761ed0e3bcd6382f702cbe11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 28 Dec 2015 00:58:47 +0100 Subject: [PATCH] Fix typo in "d9d48e8 qrexec: use tray notification when..." Fixes QubesOS/qubes-issues#1446 Thanks HW42 for the report. (cherry picked from commit fa8ebeb42d5f1175426aff8b621110602b2090e4) --- qrexec/qrexec-policy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrexec/qrexec-policy b/qrexec/qrexec-policy index ee65c12..ff38caa 100755 --- a/qrexec/qrexec-policy +++ b/qrexec/qrexec-policy @@ -102,7 +102,7 @@ def spawn_target_if_necessary(vm): # use qvm-run instead of vm.start() to make sure that nothing is written # to stdout and nothing is read from stdin null = open("/dev/null", "r+") - subprocess.call(["qvm-run", "-a", "-tray", "-q", vm.name, "true"], + subprocess.call(["qvm-run", "-a", "--tray", "-q", vm.name, "true"], stdin=null, stdout=null) null.close()