From 9239d2dd069b641eac3c209eb01182109be9564a Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 25 Dec 2009 02:16:29 -0800 Subject: [PATCH] another fix for windows --HG-- branch : trunk --- bin-for-dist/test_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin-for-dist/test_install.py b/bin-for-dist/test_install.py index e70f1cad1..0a4e1eb47 100644 --- a/bin-for-dist/test_install.py +++ b/bin-for-dist/test_install.py @@ -94,7 +94,7 @@ class VirtualEnv(object): def pytest_getouterr(self, *args): self.ensure() - args = [self._cmd("python"), self._cmd("py.test")] + list(args) + args = [self._cmd("py.test")] + list(args) popen = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out, err = popen.communicate() return out