Skip to content

Stop using proc.wait()

Popen.communicate() will do the wait for us and, unlike wait(), it properly handles decent amounts of data coming in on both stdout and stderr without locking up.

Merge request reports