##// END OF EJS Templates
dagparser: use absolute_import
Gregory Szorc -
r25941:a75cda2d default
parent child Browse files
Show More
@@ -5,9 +5,13 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import re, string
8 from __future__ import absolute_import
9 import util
9
10 from i18n import _
10 import re
11 import string
12
13 from .i18n import _
14 from . import util
11
15
12 def parsedag(desc):
16 def parsedag(desc):
13 '''parses a DAG from a concise textual description; generates events
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