##// 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 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 bin, hex, nullid
9 from i18n import _
10 import util, error, revlog, encoding
8 from __future__ import absolute_import
9
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 24 _defaultextra = {'branch': 'default'}
13 25
General Comments 0
You need to be logged in to leave comments. Login now