mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix a typo in ini.py
"if mis not None:" => "if m is not None:" Contributed-under: TianoCore Contribution Agreement 1.1 Cc: Jaben Carsey <jaben.carsey@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
This commit is contained in:
parent
72750e3bf9
commit
00eb12a2c7
|
@ -122,7 +122,7 @@ class BaseINIFile(object):
|
|||
continue
|
||||
|
||||
m = section_re.match(templine)
|
||||
if mis not None: # found a section
|
||||
if m is not None: # found a section
|
||||
inGlobal = False
|
||||
# Finish the latest section first
|
||||
if len(sObjs) != 0:
|
||||
|
|
Loading…
Reference in New Issue