hgext/convert/__init__.py
changeset 32337 46ba2cdda476
parent 30815 c5bf2e8ec18c
child 32755 3a57bfd369d4
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
     9 
     9 
    10 from __future__ import absolute_import
    10 from __future__ import absolute_import
    11 
    11 
    12 from mercurial.i18n import _
    12 from mercurial.i18n import _
    13 from mercurial import (
    13 from mercurial import (
    14     cmdutil,
       
    15     registrar,
    14     registrar,
    16 )
    15 )
    17 
    16 
    18 from . import (
    17 from . import (
    19     convcmd,
    18     convcmd,
    20     cvsps,
    19     cvsps,
    21     subversion,
    20     subversion,
    22 )
    21 )
    23 
    22 
    24 cmdtable = {}
    23 cmdtable = {}
    25 command = cmdutil.command(cmdtable)
    24 command = registrar.command(cmdtable)
    26 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    25 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    27 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    26 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    28 # be specifying the version(s) of Mercurial they are tested with, or
    27 # be specifying the version(s) of Mercurial they are tested with, or
    29 # leave the attribute unspecified.
    28 # leave the attribute unspecified.
    30 testedwith = 'ships-with-hg-core'
    29 testedwith = 'ships-with-hg-core'