hgext/journal.py
changeset 32376 46ba2cdda476
parent 32331 bd872f64a8ba
child 32414 04baab18d60a
equal deleted inserted replaced
32375:ff874d34c856 32376:46ba2cdda476
    29     extensions,
    29     extensions,
    30     hg,
    30     hg,
    31     localrepo,
    31     localrepo,
    32     lock,
    32     lock,
    33     node,
    33     node,
       
    34     registrar,
    34     util,
    35     util,
    35 )
    36 )
    36 
    37 
    37 from . import share
    38 from . import share
    38 
    39 
    39 cmdtable = {}
    40 cmdtable = {}
    40 command = cmdutil.command(cmdtable)
    41 command = registrar.command(cmdtable)
    41 
    42 
    42 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    43 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    43 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    44 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    44 # be specifying the version(s) of Mercurial they are tested with, or
    45 # be specifying the version(s) of Mercurial they are tested with, or
    45 # leave the attribute unspecified.
    46 # leave the attribute unspecified.