Submitter | Augie Fackler |
---|---|
Date | Sept. 19, 2013, 8:08 p.m. |
Message ID | <2870d243f30b33a807d2.1379621292@arthedain.pit.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/2543/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1048,7 +1048,7 @@ if _hgpath is not None: return _hgpath - cmd = '%s -c "import mercurial; print mercurial.__path__[0]"' + cmd = '%s -c "import mercurial; print (mercurial.__path__[0])"' pipe = os.popen(cmd % PYTHON) try: _hgpath = pipe.read().strip()