Mercurial > hgsubversion
diff tests/test_push_command.py @ 340:88ba55ad58c0
Minor tweaks to wrapper documentation.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Tue, 19 May 2009 11:43:49 +0200 |
parents | 46e69be8e2c8 |
children | af1508b7ad54 |
line wrap: on
line diff
--- a/tests/test_push_command.py +++ b/tests/test_push_command.py @@ -60,7 +60,9 @@ class PushTests(test_util.TestBase): '--listen-host=%s' % self.host, '--root=%s' % self.repo_path] - self.svnserve_pid = subprocess.Popen(args).pid + svnserve = subprocess.Popen(args, stdout=subprocess.PIPE, + stderr=subprocess.STDOUT) + self.svnserve_pid = svnserve.pid try: time.sleep(2) import shutil