# HG changeset patch # User Jeff Hammel # Date 1391383998 28800 # Node ID 839dfd35d5676a9936bb7d0eb796604ba0963c68 # Parent 8e23bbc9c1977fe7d823f859aa287385232bc51d STUB: python/multiproc.py diff -r 8e23bbc9c197 -r 839dfd35d567 python/multiproc.py --- a/python/multiproc.py Sun Feb 02 15:32:29 2014 -0800 +++ b/python/multiproc.py Sun Feb 02 15:33:18 2014 -0800 @@ -68,7 +68,7 @@ # check for timeout curr_time = time.time() run_time = curr_time - self.start - if run_time > maxtime: + if maxtime is not None and run_time > maxtime: self.kill() self._finalize(process_output) return