##// END OF EJS Templates
changelog: use absolute_import
Gregory Szorc -
r25922:85f44274 default
parent child Browse files
Show More
@@ -5,9 +5,21 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 node import bin, hex, nullid
8 from __future__ import absolute_import
9 from i18n import _
9
10 import util, error, revlog, encoding
10 from .i18n import _
11 from .node import (
12 bin,
13 hex,
14 nullid,
15 )
16
17 from . import (
18 encoding,
19 error,
20 revlog,
21 util,
22 )
11
23
12 _defaultextra = {'branch': 'default'}
24 _defaultextra = {'branch': 'default'}
13
25
General Comments 0
You need to be logged in to leave comments. Login now