Commit 5d163b5b authored by Jason R. Coombs's avatar Jason R. Coombs

Use platform-friendly syntax for Mercurial checkouts. Fixes #170.

parent 259c84a2
v36.5.1
-------
* #170: When working with Mercurial checkouts, use Windows-friendly
syntax for suppressing output.
v36.5.0
-------
......
......@@ -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,
))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment