From 6cf6fed02408b5f3ba39de46cbc971b9dda3639b Mon Sep 17 00:00:00 2001 From: "Feng, YunhuaX" Date: Tue, 21 Aug 2018 08:48:38 +0800 Subject: [PATCH] BaseTools: Fix regression issue by b23414f6540d V2: Renaming function DepexExpressionTokenList to DepexExpressionDict instead of changing the callers Fix regression issue by b23414f6540d4f336b6f00b44681911d469f9a04 AttributeError: 'ModuleAutoGen' object has no attribute 'DepexExpressionDict' Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng Reviewed-by: Yonghong Zhu --- BaseTools/Source/Python/AutoGen/AutoGen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py index c5bf60ffb1..7bca6fb426 100644 --- a/BaseTools/Source/Python/AutoGen/AutoGen.py +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py @@ -2897,7 +2897,7 @@ class ModuleAutoGen(AutoGen): # @retval list The token list of the dependency expression after parsed # @cached_property - def DepexExpressionTokenList(self): + def DepexExpressionDict(self): if self.DxsFile or self.IsLibrary or TAB_DEPENDENCY_EXPRESSION_FILE in self.FileTypes: return {} -- 2.39.2