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:
Gary Lin 2018-06-25 18:31:24 +08:00 committed by Yonghong Zhu
parent 72750e3bf9
commit 00eb12a2c7
1 changed files with 1 additions and 1 deletions

View File

@ -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: