Wait longer for process to start.

This commit is contained in:
Florian Bruhin 2015-10-14 07:45:08 +02:00
parent ffc465e863
commit af000a8ac6

View File

@ -113,7 +113,7 @@ class Process(QObject):
def start(self):
"""Start the process and wait until it started."""
with self._wait_signal(self.ready):
with self._wait_signal(self.ready, timeout=20000):
self._start()
def _start(self):