##// END OF EJS Templates
discovery: use absolute_import
Gregory Szorc -
r25944:337d010f default
parent child Browse files
Show More
@@ -5,10 +5,23 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 from node import nullid, short
9 from i18n import _
10 import util, setdiscovery, treediscovery, phases, obsolete, bookmarks
11 import branchmap
8 from __future__ import absolute_import
9
10 from .i18n import _
11 from .node import (
12 nullid,
13 short,
14 )
15
16 from . import (
17 bookmarks,
18 branchmap,
19 obsolete,
20 phases,
21 setdiscovery,
22 treediscovery,
23 util,
24 )
12 25
13 26 def findcommonincoming(repo, remote, heads=None, force=False):
14 27 """Return a tuple (common, anyincoming, heads) used to identify the common
General Comments 0
You need to be logged in to leave comments. Login now