hgext/rebase.py
changeset 32337 46ba2cdda476
parent 32327 3546a771e376
child 32348 082fc4abdc31
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
    66 # plain prune (no successor)
    66 # plain prune (no successor)
    67 revpruned = -5
    67 revpruned = -5
    68 revskipped = (revignored, revprecursor, revpruned)
    68 revskipped = (revignored, revprecursor, revpruned)
    69 
    69 
    70 cmdtable = {}
    70 cmdtable = {}
    71 command = cmdutil.command(cmdtable)
    71 command = registrar.command(cmdtable)
    72 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    72 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    73 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    73 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    74 # be specifying the version(s) of Mercurial they are tested with, or
    74 # be specifying the version(s) of Mercurial they are tested with, or
    75 # leave the attribute unspecified.
    75 # leave the attribute unspecified.
    76 testedwith = 'ships-with-hg-core'
    76 testedwith = 'ships-with-hg-core'