graft: use double quotes for arguments
authortimeless <timeless@mozdev.org>
Tue, 12 Jan 2016 09:30:24 +0000
changeset 28797 9b52094bb04d
parent 28796 08a686a4a0a2
child 28798 c065e0ec13d1
graft: use double quotes for arguments You can't use single quotes in cmd.exe. See be7ef03d7fb6.
mercurial/commands.py
--- a/mercurial/commands.py	Mon Apr 04 06:27:12 2016 +0000
+++ b/mercurial/commands.py	Tue Jan 12 09:30:24 2016 +0000
@@ -4056,7 +4056,7 @@
 
       - show revisions sorted by date::
 
-          hg log -r 'sort(all(), date)'
+          hg log -r "sort(all(), date)"
 
     See :hg:`help revisions` and :hg:`help revsets` for more about
     specifying revisions.