hgext/hgk.py
changeset 32376 46ba2cdda476
parent 31418 dddc4812aa7a
child 33860 7d5bc0e5b88f
equal deleted inserted replaced
32375:ff874d34c856 32376:46ba2cdda476
    43     nullid,
    43     nullid,
    44     nullrev,
    44     nullrev,
    45     short,
    45     short,
    46 )
    46 )
    47 from mercurial import (
    47 from mercurial import (
    48     cmdutil,
       
    49     commands,
    48     commands,
    50     obsolete,
    49     obsolete,
    51     patch,
    50     patch,
       
    51     registrar,
    52     scmutil,
    52     scmutil,
    53 )
    53 )
    54 
    54 
    55 cmdtable = {}
    55 cmdtable = {}
    56 command = cmdutil.command(cmdtable)
    56 command = registrar.command(cmdtable)
    57 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    57 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    58 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    58 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    59 # be specifying the version(s) of Mercurial they are tested with, or
    59 # be specifying the version(s) of Mercurial they are tested with, or
    60 # leave the attribute unspecified.
    60 # leave the attribute unspecified.
    61 testedwith = 'ships-with-hg-core'
    61 testedwith = 'ships-with-hg-core'