##// END OF EJS Templates
tagmerge: use absolute_import
Gregory Szorc -
r25981:fa91c49a default
parent child Browse files
Show More
@@ -71,11 +71,20
71 71 # - put blocks whose nodes come all from p2 first
72 72 # - write the tag blocks in the sorted order
73 73
74 import tags as tagsmod
75 import util
76 from node import nullid, hex
77 from i18n import _
74 from __future__ import absolute_import
75
78 76 import operator
77
78 from .i18n import _
79 from .node import (
80 hex,
81 nullid,
82 )
83 from .import (
84 tags as tagsmod,
85 util,
86 )
87
79 88 hexnullid = hex(nullid)
80 89
81 90 def readtagsformerge(ui, repo, lines, fn='', keeplinenums=False):
General Comments 0
You need to be logged in to leave comments. Login now