hgext/fetch.py
changeset 32337 46ba2cdda476
parent 29841 d5883fd055c6
child 32375 04baab18d60a
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
    18     commands,
    18     commands,
    19     error,
    19     error,
    20     exchange,
    20     exchange,
    21     hg,
    21     hg,
    22     lock,
    22     lock,
       
    23     registrar,
    23     util,
    24     util,
    24 )
    25 )
    25 
    26 
    26 release = lock.release
    27 release = lock.release
    27 cmdtable = {}
    28 cmdtable = {}
    28 command = cmdutil.command(cmdtable)
    29 command = registrar.command(cmdtable)
    29 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    30 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    30 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    31 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    31 # be specifying the version(s) of Mercurial they are tested with, or
    32 # be specifying the version(s) of Mercurial they are tested with, or
    32 # leave the attribute unspecified.
    33 # leave the attribute unspecified.
    33 testedwith = 'ships-with-hg-core'
    34 testedwith = 'ships-with-hg-core'