mirror of https://github.com/acidanthera/audk.git
BaseTools: Remove tuple parameter in python scripts
According to PEP3113, tuple parameter is removed in python 3. (PEP3113: https://www.python.org/dev/peps/pep-3113/) 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: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
87d2afd07c
commit
890d8ede68
|
@ -218,7 +218,8 @@ class VpdInfoFile:
|
|||
return None
|
||||
|
||||
return self._VpdArray[vpd]
|
||||
def GetVpdInfo(self,(PcdTokenName,TokenSpaceName)):
|
||||
def GetVpdInfo(self, arg):
|
||||
(PcdTokenName, TokenSpaceName) = arg
|
||||
return self._VpdInfo.get((TokenSpaceName, PcdTokenName))
|
||||
|
||||
## Call external BPDG tool to process VPD file
|
||||
|
|
Loading…
Reference in New Issue