hgext/extdiff.py
changeset 32337 46ba2cdda476
parent 32283 8a1ff5ed620e
child 32375 04baab18d60a
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
    76     cmdutil,
    76     cmdutil,
    77     commands,
    77     commands,
    78     error,
    78     error,
    79     filemerge,
    79     filemerge,
    80     pycompat,
    80     pycompat,
       
    81     registrar,
    81     scmutil,
    82     scmutil,
    82     util,
    83     util,
    83 )
    84 )
    84 
    85 
    85 cmdtable = {}
    86 cmdtable = {}
    86 command = cmdutil.command(cmdtable)
    87 command = registrar.command(cmdtable)
    87 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    88 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    88 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    89 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    89 # be specifying the version(s) of Mercurial they are tested with, or
    90 # be specifying the version(s) of Mercurial they are tested with, or
    90 # leave the attribute unspecified.
    91 # leave the attribute unspecified.
    91 testedwith = 'ships-with-hg-core'
    92 testedwith = 'ships-with-hg-core'