From 6693f359b3c213513c5096a06c6f67244a44dc52 Mon Sep 17 00:00:00 2001 From: Yunhua Feng Date: Tue, 25 Sep 2018 13:31:35 +0800 Subject: [PATCH] BaseTools: Remove the outdated verbose parameter of namedtuple the verbose is outdated. in 3.6: The verbose and rename parameters became keyword-only arguments 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/Workspace/BuildClassObject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/Workspace/BuildClassObject.py b/BaseTools/Source/Python/Workspace/BuildClassObject.py index 95edc376fe..8969f84a2b 100644 --- a/BaseTools/Source/Python/Workspace/BuildClassObject.py +++ b/BaseTools/Source/Python/Workspace/BuildClassObject.py @@ -242,7 +242,7 @@ class StructurePcd(PcdClassObject): self.PcdFieldValueFromComm = PcdObject.PcdFieldValueFromComm if PcdObject.PcdFieldValueFromComm else self.PcdFieldValueFromComm self.PcdFieldValueFromFdf = PcdObject.PcdFieldValueFromFdf if PcdObject.PcdFieldValueFromFdf else self.PcdFieldValueFromFdf -LibraryClassObject = namedtuple('LibraryClassObject', ['LibraryClass','SupModList'], verbose=False) +LibraryClassObject = namedtuple('LibraryClassObject', ['LibraryClass','SupModList']) ## ModuleBuildClassObject #