comparison hgext/keyword.py @ 32337:46ba2cdda476

registrar: move cmdutil.command to registrar module (API) cmdutil.command wasn't a member of the registrar framework only for a historical reason. Let's make that happen. This patch keeps cmdutil.command as an alias for extension compatibility.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 09 Jan 2016 23:07:20 +0900
parents 1d7e8eb8788b
children 04baab18d60a
comparison
equal deleted inserted replaced
32336:ff874d34c856 32337:46ba2cdda476
109 templatefilters, 109 templatefilters,
110 util, 110 util,
111 ) 111 )
112 112
113 cmdtable = {} 113 cmdtable = {}
114 command = cmdutil.command(cmdtable) 114 command = registrar.command(cmdtable)
115 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for 115 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
116 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 116 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
117 # be specifying the version(s) of Mercurial they are tested with, or 117 # be specifying the version(s) of Mercurial they are tested with, or
118 # leave the attribute unspecified. 118 # leave the attribute unspecified.
119 testedwith = 'ships-with-hg-core' 119 testedwith = 'ships-with-hg-core'