mercurial/debugcommands.py
changeset 32337 46ba2cdda476
parent 32315 67026d65a4fc
child 32363 a275186b989a
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
    49     merge as mergemod,
    49     merge as mergemod,
    50     obsolete,
    50     obsolete,
    51     policy,
    51     policy,
    52     pvec,
    52     pvec,
    53     pycompat,
    53     pycompat,
       
    54     registrar,
    54     repair,
    55     repair,
    55     revlog,
    56     revlog,
    56     revset,
    57     revset,
    57     revsetlang,
    58     revsetlang,
    58     scmutil,
    59     scmutil,
    70 
    71 
    71 release = lockmod.release
    72 release = lockmod.release
    72 
    73 
    73 # We reuse the command table from commands because it is easier than
    74 # We reuse the command table from commands because it is easier than
    74 # teaching dispatch about multiple tables.
    75 # teaching dispatch about multiple tables.
    75 command = cmdutil.command(commands.table)
    76 command = registrar.command(commands.table)
    76 
    77 
    77 @command('debugancestor', [], _('[INDEX] REV1 REV2'), optionalrepo=True)
    78 @command('debugancestor', [], _('[INDEX] REV1 REV2'), optionalrepo=True)
    78 def debugancestor(ui, repo, *args):
    79 def debugancestor(ui, repo, *args):
    79     """find the ancestor revision of two revisions in a given index"""
    80     """find the ancestor revision of two revisions in a given index"""
    80     if len(args) == 3:
    81     if len(args) == 3: