Close stdin after starting QProcess Fixes 2491
This commit is contained in:
parent
75f8d2a1d1
commit
bc7f8018c0
@ -142,12 +142,14 @@ class GUIProcess(QObject):
|
||||
self._proc.start(cmd, args)
|
||||
else:
|
||||
self._proc.start(cmd, args, mode)
|
||||
self._proc.closeWriteChannel();
|
||||
|
||||
def start_detached(self, cmd, args, cwd=None):
|
||||
"""Convenience wrapper around QProcess::startDetached."""
|
||||
log.procs.debug("Starting detached.")
|
||||
self._pre_start(cmd, args)
|
||||
ok, _pid = self._proc.startDetached(cmd, args, cwd)
|
||||
self._proc.closeWriteChannel();
|
||||
|
||||
if ok:
|
||||
log.procs.debug("Process started.")
|
||||
|
Loading…
Reference in New Issue
Block a user