[pypy-commit] pypy default: switch ' and " for windows

mattip noreply at buildbot.pypy.org
Fri Jan 11 07:31:58 CET 2013


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r59941:4765dafa998c
Date: 2013-01-11 08:30 +0200
http://bitbucket.org/pypy/pypy/changeset/4765dafa998c/

Log:	switch ' and " for windows

diff --git a/pypy/doc/test/test_whatsnew.py b/pypy/doc/test/test_whatsnew.py
--- a/pypy/doc/test/test_whatsnew.py
+++ b/pypy/doc/test/test_whatsnew.py
@@ -29,7 +29,7 @@
                       merge() and \
                       branch(default)) and \
               not branch(default)' % (startrev, endrev)
-    cmd = r"hg log -R '%s' -r '%s' --template '{branches}\n'" % (path, revset)
+    cmd = r'hg log -R "%s" -r "%s" --template "{branches}\n"' % (path, revset)
     out = getoutput(cmd)
     branches = set(map(str.strip, out.splitlines()))
     return branches


More information about the pypy-commit mailing list