##// END OF EJS Templates
repoview: use absolute_import
Gregory Szorc -
r25972:f2791911 default
parent child Browse files
Show More
@@ -6,15 +6,20 b''
6 # This software may be used and distributed according to the terms of the
6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version.
7 # GNU General Public License version 2 or any later version.
8
8
9 import heapq
9 from __future__ import absolute_import
10
10 import copy
11 import copy
11 import error
12 import heapq
12 import phases
13 import util
14 import obsolete
15 import struct
13 import struct
16 import tags as tagsmod
14
17 from node import nullrev
15 from .node import nullrev
16 from . import (
17 error,
18 obsolete,
19 phases,
20 tags as tagsmod,
21 util,
22 )
18
23
19 def hideablerevs(repo):
24 def hideablerevs(repo):
20 """Revisions candidates to be hidden
25 """Revisions candidates to be hidden
General Comments 0
You need to be logged in to leave comments. Login now