##// END OF EJS Templates
peer: use absolute_import
Gregory Szorc -
r25965:e6b56b2c default
parent child Browse files
Show More
@@ -6,9 +6,13 b''
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2 or any later version.
8 8
9 from i18n import _
10 import error
11 import util
9 from __future__ import absolute_import
10
11 from .i18n import _
12 from . import (
13 error,
14 util,
15 )
12 16
13 17 # abstract batching support
14 18
General Comments 0
You need to be logged in to leave comments. Login now