From 476975923ce1f524372f39f622ede1b4cdef73e2 Mon Sep 17 00:00:00 2001 From: Michael Wild Date: Mon, 26 Sep 2011 12:39:06 +0200 Subject: [PATCH] FIX: Unqualified name in data/python/FreeFOAM/compat.py Signed-off-by: Michael Wild --- data/python/FreeFOAM/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/python/FreeFOAM/compat.py b/data/python/FreeFOAM/compat.py index 53aff0cc4..8cf1d270d 100644 --- a/data/python/FreeFOAM/compat.py +++ b/data/python/FreeFOAM/compat.py @@ -157,7 +157,7 @@ if _sys.hexversion < 0x020500f0: def _check_output(*popenargs, **kwargs): if 'stdout' in kwargs: raise ValueError('stdout argument not allowed, it will be overridden.') - process = _subprocess.Popen(stdout=PIPE, *popenargs, **kwargs) + process = _subprocess.Popen(stdout=_subprocess.PIPE, *popenargs, **kwargs) output, unused_err = process.communicate() retcode = process.poll() if retcode: -- 2.11.4.GIT