Close stdin after starting QProcess Fixes 2491

This commit is contained in:
Fritz Reichwald 2017-04-12 06:56:38 +02:00
parent 75f8d2a1d1
commit bc7f8018c0

View File

@ -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.")