[Greater-commits] r250 - trunk/GREAT-ER-DB/impl/postgresql/test
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Jun 22 17:52:59 CEST 2011
Author: aheinecke
Date: 2011-06-22 17:52:59 +0200 (Wed, 22 Jun 2011)
New Revision: 250
Modified:
trunk/GREAT-ER-DB/impl/postgresql/test/postgressupport.py
Log:
Close fd's is not supported on Windows and we do not need it anyways
Modified: trunk/GREAT-ER-DB/impl/postgresql/test/postgressupport.py
===================================================================
--- trunk/GREAT-ER-DB/impl/postgresql/test/postgressupport.py 2011-06-22 15:51:17 UTC (rev 249)
+++ trunk/GREAT-ER-DB/impl/postgresql/test/postgressupport.py 2011-06-22 15:52:59 UTC (rev 250)
@@ -48,7 +48,7 @@
are ignored and not written to any file.
"""
proc = Popen(command, shell=True,
- stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
+ stdin=PIPE, stdout=PIPE, stderr=PIPE)
output = proc.stdout.read() + proc.stderr.read()
status = proc.wait()
if outfilename is not None:
More information about the Greater-commits
mailing list