diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-09-13 15:41:30 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-09-13 15:41:36 -0400 |
commit | 5d163b5bf846b86dfebf335548deb1398262c8b8 (patch) | |
tree | 841dba0f8a34cf6987026b1d16ef7c673c21c6c8 /setuptools/package_index.py | |
parent | 259c84a277f60c1591e72340476aacfe47c96f97 (diff) | |
download | external_python_setuptools-5d163b5bf846b86dfebf335548deb1398262c8b8.tar.gz external_python_setuptools-5d163b5bf846b86dfebf335548deb1398262c8b8.tar.bz2 external_python_setuptools-5d163b5bf846b86dfebf335548deb1398262c8b8.zip |
Use platform-friendly syntax for Mercurial checkouts. Fixes #170.
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-x | setuptools/package_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 2acc817a..a6363b18 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -893,7 +893,7 @@ class PackageIndex(Environment): if rev is not None: self.info("Updating to %s", rev) - os.system("(cd %s && hg up -C -r %s >&-)" % ( + os.system("(cd %s && hg up -C -r %s -q)" % ( filename, rev, )) |