Fix unicode handling in command to run
Thanks @igilik for the patch! Fixes QubesOS/qubes-issues#2040
This commit is contained in:
parent
98cada9f07
commit
f34328836e
@ -1461,7 +1461,7 @@ class VmManagerWindow(Ui_VmManagerWindow, QMainWindow):
|
||||
return
|
||||
thread_monitor = ThreadMonitor()
|
||||
thread = threading.Thread(target=self.do_run_command_in_vm, args=(
|
||||
vm, str(command_to_run), thread_monitor))
|
||||
vm, unicode(command_to_run), thread_monitor))
|
||||
thread.daemon = True
|
||||
thread.start()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user