summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Eot
diff options
context:
space:
mode:
authorCarsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben>2018-04-04 05:03:02 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-04-08 14:50:15 +0800
commit5af2a627d13f00f7dd782dde9db2ac7b821e8816 (patch)
tree7dc949e40be5584cda64f17b7be068914c87d604 /BaseTools/Source/Python/Eot
parent5060928b12724d7d6030aa9a472dc113f226386c (diff)
downloadedk2-5af2a627d13f00f7dd782dde9db2ac7b821e8816.tar.gz
edk2-5af2a627d13f00f7dd782dde9db2ac7b821e8816.tar.bz2
edk2-5af2a627d13f00f7dd782dde9db2ac7b821e8816.zip
BaseTools: use built in dict instead of custom version.
We dont use any feature added by custom dictionary class. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Eot')
-rw-r--r--BaseTools/Source/Python/Eot/EotGlobalData.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Eot/EotGlobalData.py b/BaseTools/Source/Python/Eot/EotGlobalData.py
index dd4ff4cf5e..a4654853ab 100644
--- a/BaseTools/Source/Python/Eot/EotGlobalData.py
+++ b/BaseTools/Source/Python/Eot/EotGlobalData.py
@@ -70,7 +70,7 @@ gSOURCE_FILES = 'Log_SourceFiles.log'
gOP_SOURCE_FILES = open(gSOURCE_FILES, 'w+')
# Dict for GUID found in DEC files
-gGuidDict = sdict()
+gGuidDict = dict()
# Dict for hard coded GUID Macros
# {GuidName : [GuidMacro : GuidValue]}