# HG changeset patch # User timeless # Date 1452591024 0 # Node ID 9b52094bb04d85b3aaa38aace039394e221ba4e0 # Parent 08a686a4a0a281f812dedc5c17fcf8907b3fcaed graft: use double quotes for arguments You can't use single quotes in cmd.exe. See be7ef03d7fb6. diff -r 08a686a4a0a2 -r 9b52094bb04d 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.