##// END OF EJS Templates
formatter: use absolute_import
Gregory Szorc -
r25950:175873e3 default
parent child Browse files
Show More
@@ -5,13 +5,23 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 __future__ import absolute_import
9
8 10 import cPickle
9 from node import hex, short
10 from i18n import _
11 import encoding, util
12 import templater
13 11 import os
14 12
13 from .i18n import _
14 from .node import (
15 hex,
16 short,
17 )
18
19 from . import (
20 encoding,
21 templater,
22 util,
23 )
24
15 25 class baseformatter(object):
16 26 def __init__(self, ui, topic, opts):
17 27 self._ui = ui
General Comments 0
You need to be logged in to leave comments. Login now