##// END OF EJS Templates
similar: use absolute_import
Gregory Szorc -
r27359:a56c47ed default
parent child Browse files
Show More
@@ -5,10 +5,14 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from i18n import _
8 from __future__ import absolute_import
9 import util
9
10 import mdiff
10 from .i18n import _
11 import bdiff
11 from . import (
12 bdiff,
13 mdiff,
14 util,
15 )
12
16
13 def _findexactmatches(repo, added, removed):
17 def _findexactmatches(repo, added, removed):
14 '''find renamed files that have no changes
18 '''find renamed files that have no changes
@@ -126,7 +126,6 b''
126 mercurial/scmposix.py not using absolute_import
126 mercurial/scmposix.py not using absolute_import
127 mercurial/scmutil.py not using absolute_import
127 mercurial/scmutil.py not using absolute_import
128 mercurial/scmwindows.py not using absolute_import
128 mercurial/scmwindows.py not using absolute_import
129 mercurial/similar.py not using absolute_import
130 mercurial/store.py not using absolute_import
129 mercurial/store.py not using absolute_import
131 mercurial/windows.py not using absolute_import
130 mercurial/windows.py not using absolute_import
132 setup.py not using absolute_import
131 setup.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now