From: Carsey, Jaben Date: Tue, 3 Apr 2018 21:03:02 +0000 (+0800) Subject: BaseTools: use built in dict instead of custom version. X-Git-Tag: edk2-stable201903~1976 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=5af2a627d13f00f7dd782dde9db2ac7b821e8816 BaseTools: use built in dict instead of custom version. We dont use any feature added by custom dictionary class. Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey Reviewed-by: Yonghong Zhu --- 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]}