hgext/children.py
changeset 10152 56284451a22c
parent 9253 d6d811d90976
child 10264 d6512b3e9ac0
equal deleted inserted replaced
10151:c7355a0e1f39 10152:56284451a22c
    31         ctx = repo[rev]
    31         ctx = repo[rev]
    32 
    32 
    33     displayer = cmdutil.show_changeset(ui, repo, opts)
    33     displayer = cmdutil.show_changeset(ui, repo, opts)
    34     for cctx in ctx.children():
    34     for cctx in ctx.children():
    35         displayer.show(cctx)
    35         displayer.show(cctx)
    36 
    36     displayer.close()
    37 
    37 
    38 cmdtable = {
    38 cmdtable = {
    39     "children":
    39     "children":
    40         (children,
    40         (children,
    41          [('r', 'rev', '', _('show children of the specified revision')),
    41          [('r', 'rev', '', _('show children of the specified revision')),