BaseTools: Correct the variable name

the commit bff74750 introduce a undefined variable name 'scope' cause build
failure, it should use 'Scope'.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Yonghong Zhu 2018-05-07 13:41:27 +08:00
parent 5d9af6a55a
commit 053cd183c9
1 changed files with 1 additions and 1 deletions

View File

@ -1135,7 +1135,7 @@ class FdfParser:
@staticmethod
def __Verify(Name, Value, Scope):
# value verification only applies to numeric values.
if scope not in TAB_PCD_NUMERIC_TYPES:
if Scope not in TAB_PCD_NUMERIC_TYPES:
return
ValueNumber = 0