changeset 28797:9b52094bb04d

graft: use double quotes for arguments You can't use single quotes in cmd.exe. See be7ef03d7fb6.
author timeless <timeless@mozdev.org>
date Tue, 12 Jan 2016 09:30:24 +0000
parents 08a686a4a0a2
children c065e0ec13d1
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.