Mercurial > moin > 1.9
changeset 5404:bf05a6ae61ea
win32-specific part of SubProcess: use correct attributes (fixes calling of external xapian index filters)
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Fri, 08 Jan 2010 18:24:39 +0100 |
parents | 6e7f1b059a3c |
children | a1a1ce8894cb 0dd02729b3b5 |
files | MoinMoin/util/SubProcess.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/util/SubProcess.py Fri Dec 25 20:11:32 2009 +0100 +++ b/MoinMoin/util/SubProcess.py Fri Jan 08 18:24:39 2010 +0100 @@ -118,8 +118,8 @@ stderr_thread.join(self.timeout) # if the threads are still alive, that means the thread join timed out - timed_out = (self.stdout and self.stdout_thread.isAlive() or - self.stderr and self.stderr_thread.isAlive()) + timed_out = (self.stdout and stdout_thread.isAlive() or + self.stderr and stderr_thread.isAlive()) if timed_out: self.kill() else: