Show More
@@ -7,12 +7,20 b'' | |||||
7 |
|
7 | |||
8 | '''import revisions from foreign VCS repositories into Mercurial''' |
|
8 | '''import revisions from foreign VCS repositories into Mercurial''' | |
9 |
|
9 | |||
10 | import convcmd |
|
10 | from __future__ import absolute_import | |
11 | import cvsps |
|
11 | ||
12 | import subversion |
|
12 | from mercurial import ( | |
13 | from mercurial import cmdutil, templatekw |
|
13 | cmdutil, | |
|
14 | templatekw, | |||
|
15 | ) | |||
14 | from mercurial.i18n import _ |
|
16 | from mercurial.i18n import _ | |
15 |
|
17 | |||
|
18 | from . import ( | |||
|
19 | convcmd, | |||
|
20 | cvsps, | |||
|
21 | subversion, | |||
|
22 | ) | |||
|
23 | ||||
16 | cmdtable = {} |
|
24 | cmdtable = {} | |
17 | command = cmdutil.command(cmdtable) |
|
25 | command = cmdutil.command(cmdtable) | |
18 | # Note for extension authors: ONLY specify testedwith = 'internal' for |
|
26 | # Note for extension authors: ONLY specify testedwith = 'internal' for |
@@ -21,7 +21,6 b'' | |||||
21 | doc/hgmanpage.py not using absolute_import |
|
21 | doc/hgmanpage.py not using absolute_import | |
22 | hgext/__init__.py not using absolute_import |
|
22 | hgext/__init__.py not using absolute_import | |
23 | hgext/color.py not using absolute_import |
|
23 | hgext/color.py not using absolute_import | |
24 | hgext/convert/__init__.py not using absolute_import |
|
|||
25 | hgext/eol.py not using absolute_import |
|
24 | hgext/eol.py not using absolute_import | |
26 | hgext/extdiff.py not using absolute_import |
|
25 | hgext/extdiff.py not using absolute_import | |
27 | hgext/factotum.py not using absolute_import |
|
26 | hgext/factotum.py not using absolute_import |
General Comments 0
You need to be logged in to leave comments.
Login now