# HG changeset patch # User timeless # Date 2016-01-06 17:18:18 # Node ID ccab2923a093936a61f1bc143f08ceee9559592a # Parent c065e0ec13d16611bf60c36ff9e8e37b5309c335 children: use double quotes for arguments You can't use single quotes in cmd.exe. See be7ef03d7fb6. diff --git a/hgext/children.py b/hgext/children.py --- a/hgext/children.py +++ b/hgext/children.py @@ -49,8 +49,8 @@ def children(ui, repo, file_=None, **opt Please use :hg:`log` instead:: - hg children => hg log -r 'children()' - hg children -r REV => hg log -r 'children(REV)' + hg children => hg log -r "children()" + hg children -r REV => hg log -r "children(REV)" See :hg:`help log` and :hg:`help revsets.children`.