##// END OF EJS Templates
dagparser: use absolute_import
Gregory Szorc -
r25941:a75cda2d default
parent child Browse files
Show More
@@ -5,9 +5,13
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 import re, string
9 import util
10 from i18n import _
8 from __future__ import absolute_import
9
10 import re
11 import string
12
13 from .i18n import _
14 from . import util
11 15
12 16 def parsedag(desc):
13 17 '''parses a DAG from a concise textual description; generates events
General Comments 0
You need to be logged in to leave comments. Login now