From 0a323dbacc7b4fc6287e27cd00bb9b46515ca204 Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Thu, 21 Apr 2011 16:17:31 +0400 Subject: [PATCH] Fix process class. --- pym/cl_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pym/cl_utils.py b/pym/cl_utils.py index 9ba27da..ab7bc8e 100644 --- a/pym/cl_utils.py +++ b/pym/cl_utils.py @@ -253,6 +253,7 @@ class process: def getStdout(self): """Get current stdout""" self.close() + self._open() return self.pipe.stdout def write(self,data):