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