summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Eot/CParser.py
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2018-07-13 18:18:43 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-07-16 11:22:17 +0800
commit64429fbd61d445b892a78f4e55b0b83c184790bd (patch)
tree038d0114284de43ebd225e9a8f4dd3d3efd8042c /BaseTools/Source/Python/Eot/CParser.py
parentb6f6b636b038e780c87892b17835bb6d043523b8 (diff)
downloadedk2-64429fbd61d445b892a78f4e55b0b83c184790bd.tar.gz
edk2-64429fbd61d445b892a78f4e55b0b83c184790bd.tar.bz2
edk2-64429fbd61d445b892a78f4e55b0b83c184790bd.zip
BaseTools: Use absolute import in Eot
Based on "futurize -f libfuturize.fixes.fix_absolute_import Contributed-under: TianoCore Contribution Agreement 1.1 Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Eot/CParser.py')
-rw-r--r--BaseTools/Source/Python/Eot/CParser.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/Eot/CParser.py b/BaseTools/Source/Python/Eot/CParser.py
index b66ac2d8d5..0b74b53ae7 100644
--- a/BaseTools/Source/Python/Eot/CParser.py
+++ b/BaseTools/Source/Python/Eot/CParser.py
@@ -1,6 +1,7 @@
# $ANTLR 3.0.1 C.g 2010-02-23 09:58:53
from __future__ import print_function
+from __future__ import absolute_import
from antlr3 import *
from antlr3.compat import set, frozenset
@@ -23,8 +24,8 @@ from antlr3.compat import set, frozenset
#
##
-import CodeFragment
-import FileProfile
+from . import CodeFragment
+from . import FileProfile