##// END OF EJS Templates
transaction: use absolute_import
Gregory Szorc -
r25986:89049011 default
parent child Browse files
Show More
@@ -11,9 +11,15 b''
11 11 # This software may be used and distributed according to the terms of the
12 12 # GNU General Public License version 2 or any later version.
13 13
14 from i18n import _
14 from __future__ import absolute_import
15
15 16 import errno
16 import error, util
17
18 from .i18n import _
19 from . import (
20 error,
21 util,
22 )
17 23
18 24 version = 2
19 25
General Comments 0
You need to be logged in to leave comments. Login now