hgext/children.py
changeset 29841 d5883fd055c6
parent 28799 ccab2923a093
child 32337 46ba2cdda476
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
    24 
    24 
    25 templateopts = commands.templateopts
    25 templateopts = commands.templateopts
    26 
    26 
    27 cmdtable = {}
    27 cmdtable = {}
    28 command = cmdutil.command(cmdtable)
    28 command = cmdutil.command(cmdtable)
    29 # Note for extension authors: ONLY specify testedwith = 'internal' for
    29 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    30 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    30 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    31 # be specifying the version(s) of Mercurial they are tested with, or
    31 # be specifying the version(s) of Mercurial they are tested with, or
    32 # leave the attribute unspecified.
    32 # leave the attribute unspecified.
    33 testedwith = 'internal'
    33 testedwith = 'ships-with-hg-core'
    34 
    34 
    35 @command('children',
    35 @command('children',
    36     [('r', 'rev', '',
    36     [('r', 'rev', '',
    37      _('show children of the specified revision'), _('REV')),
    37      _('show children of the specified revision'), _('REV')),
    38     ] + templateopts,
    38     ] + templateopts,