Submitter | phabricator |
---|---|
Date | Feb. 24, 2018, 7:31 p.m. |
Message ID | <differential-rev-PHID-DREV-z554f6nthbbj7f6ebb76-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/28329/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -400,7 +400,7 @@ """List of strings. The children of the changeset.""" args = pycompat.byteskwargs(args) ctx = args['ctx'] - childrevs = ['%d:%s' % (cctx, cctx) for cctx in ctx.children()] + childrevs = ['%d:%s' % (cctx.rev(), cctx) for cctx in ctx.children()] return showlist('children', childrevs, args, element='child') # Deprecated, but kept alive for help generation a purpose.