##// END OF EJS Templates
parser: use absolute_import
Gregory Szorc -
r25963:7448df70 default
parent child Browse files
Show More
@@ -16,8 +16,10 b''
16 # an action is a tree node name, a tree label, and an optional match
16 # an action is a tree node name, a tree label, and an optional match
17 # __call__(program) parses program into a labeled tree
17 # __call__(program) parses program into a labeled tree
18
18
19 import error
19 from __future__ import absolute_import
20 from i18n import _
20
21 from .i18n import _
22 from . import error
21
23
22 class parser(object):
24 class parser(object):
23 def __init__(self, elements, methods=None):
25 def __init__(self, elements, methods=None):
General Comments 0
You need to be logged in to leave comments. Login now