another fix for windows

--HG--
branch : trunk
This commit is contained in:
holger krekel 2009-12-25 02:16:29 -08:00
parent 0bfd3819c8
commit 9239d2dd06
1 changed files with 1 additions and 1 deletions

View File

@ -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