diff options
-rw-r--r-- | python/qpid/brokertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/brokertest.py b/python/qpid/brokertest.py index f1a58aa8a9..1fc16162ba 100644 --- a/python/qpid/brokertest.py +++ b/python/qpid/brokertest.py @@ -153,9 +153,9 @@ class Popen(popen2.Popen3): self.cmd = [ str(x) for x in cmd ] self.returncode = None self.expect = expect + popen2.Popen3.__init__(self, self.cmd, True) self.pname = "%s-%d" % (os.path.split(self.cmd[0])[1], self.pid) msg = "Process %s" % self.pname - popen2.Popen3.__init__(self, self.cmd, True) self.stdin = ExceptionWrapper(self.tochild, msg) self.stdout = Popen.OutStream(self.fromchild, self.outfile("out"), msg) self.stderr = Popen.OutStream(self.childerr, self.outfile("err"), msg) |