##// END OF EJS Templates
narrow: move `testedwith` after module imports...
Matt Harbison -
r44418:f91834ec default
parent child Browse files
Show More
@@ -8,12 +8,6 b''
8
8
9 from __future__ import absolute_import
9 from __future__ import absolute_import
10
10
11 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
12 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
13 # be specifying the version(s) of Mercurial they are tested with, or
14 # leave the attribute unspecified.
15 testedwith = b'ships-with-hg-core'
16
17 from mercurial import (
11 from mercurial import (
18 localrepo,
12 localrepo,
19 registrar,
13 registrar,
@@ -29,6 +23,12 b' from . import ('
29 narrowwirepeer,
23 narrowwirepeer,
30 )
24 )
31
25
26 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
27 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
28 # be specifying the version(s) of Mercurial they are tested with, or
29 # leave the attribute unspecified.
30 testedwith = b'ships-with-hg-core'
31
32 configtable = {}
32 configtable = {}
33 configitem = registrar.configitem(configtable)
33 configitem = registrar.configitem(configtable)
34 # Narrowhg *has* support for serving ellipsis nodes (which are used at
34 # Narrowhg *has* support for serving ellipsis nodes (which are used at
General Comments 0
You need to be logged in to leave comments. Login now