dispvm: convert exception object to string - otherwise it will not be visible
tray_notify_error can't handle arbitrary object. Fixes QubesOS/qubes-issues#1457
This commit is contained in:
父節點
bee84b83a1
當前提交
56e6c01917
@ -101,7 +101,7 @@ class QfileDaemonDvm:
|
||||
try:
|
||||
dispvm.start()
|
||||
except (MemoryError, QubesException) as e:
|
||||
tray_notify_error(e)
|
||||
tray_notify_error(str(e))
|
||||
raise
|
||||
if vm.qid != 0:
|
||||
# if need to enable/disable netvm, do it while DispVM is alive
|
||||
|
載入中…
新增問題並參考
Block a user