##// END OF EJS Templates
copies: use absolute_import
Gregory Szorc -
r25924:cfc24c22 default
parent child Browse files
Show More
@@ -5,9 +5,15 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 import util, pathutil
8 from __future__ import absolute_import
9
9 import heapq
10 import heapq
10
11
12 from . import (
13 pathutil,
14 util,
15 )
16
11 def _findlimit(repo, a, b):
17 def _findlimit(repo, a, b):
12 """
18 """
13 Find the last revision that needs to be checked to ensure that a full
19 Find the last revision that needs to be checked to ensure that a full
General Comments 0
You need to be logged in to leave comments. Login now