netrender:

terminate can fail if process finished after the call to poll, just pass on error then.
This commit is contained in:
Martin Poirier 2010-08-21 17:07:19 +00:00
parent e242f66ae6
commit 7f1a08d432

@ -219,7 +219,10 @@ def render_slave(engine, netsettings, threads):
if cancelled:
# kill process if needed
if process.poll() == None:
process.terminate()
try:
process.terminate()
except OSError:
pass
continue # to next frame
# flush the rest of the logs