##// END OF EJS Templates
convert: filemap use absolute_import
timeless -
r28367:58b17624 default
parent child Browse files
Show More
@@ -3,12 +3,16 b''
3 3 #
4 4 # This software may be used and distributed according to the terms of the
5 5 # GNU General Public License version 2 or any later version.
6 from __future__ import absolute_import
6 7
7 8 import posixpath
8 9 import shlex
10 from mercurial import (
11 error,
12 )
9 13 from mercurial.i18n import _
10 from mercurial import error
11 from common import SKIPREV, converter_source
14 from . import common
15 SKIPREV = common.SKIPREV
12 16
13 17 def rpairs(path):
14 18 '''Yield tuples with path split at '/', starting with the full path.
@@ -164,7 +168,7 b' class filemapper(object):'
164 168 # touch files we're interested in, but also merges that merge two
165 169 # or more interesting revisions.
166 170
167 class filemap_source(converter_source):
171 class filemap_source(common.converter_source):
168 172 def __init__(self, ui, baseconverter, filemap):
169 173 super(filemap_source, self).__init__(ui)
170 174 self.base = baseconverter
@@ -31,7 +31,6 b''
31 31 hgext/convert/cvs.py not using absolute_import
32 32 hgext/convert/cvsps.py not using absolute_import
33 33 hgext/convert/darcs.py not using absolute_import
34 hgext/convert/filemap.py not using absolute_import
35 34 hgext/convert/hg.py not using absolute_import
36 35 hgext/convert/monotone.py not using absolute_import
37 36 hgext/convert/p4.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now