diff options
author | Dionna Glaze <dionnaglaze@google.com> | 2024-12-09 21:42:33 +0300 |
---|---|---|
committer | Liming Gao <gaoliming@byosoft.com.cn> | 2024-12-11 04:00:21 +0300 |
commit | 74ac8cc0e81272b52f66b3e259e497fa628ab49d (patch) | |
tree | f31e799752c7a59341fb59513919a49e4749bf33 /BaseTools/Source/Python/GenFds/EfiSection.py | |
parent | aca75d3c08674dfa85f00100edf85c67476e333d (diff) | |
download | edk2-74ac8cc0e81272b52f66b3e259e497fa628ab49d.tar.xz |
BaseTools: Typo fixes
Some in error messages, some in local variable names.
Signed-off-by: Dionna Glaze <dionnaglaze@google.com>
Diffstat (limited to 'BaseTools/Source/Python/GenFds/EfiSection.py')
-rw-r--r-- | BaseTools/Source/Python/GenFds/EfiSection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/GenFds/EfiSection.py b/BaseTools/Source/Python/GenFds/EfiSection.py index fd58391dac..ca7a447008 100644 --- a/BaseTools/Source/Python/GenFds/EfiSection.py +++ b/BaseTools/Source/Python/GenFds/EfiSection.py @@ -155,7 +155,7 @@ class EfiSection (EfiSectionClassObject): #if VerString == '' and
if BuildNumString == '':
if self.Optional == True :
- GenFdsGlobalVariable.VerboseLogger( "Optional Section don't exist!")
+ GenFdsGlobalVariable.VerboseLogger( "Optional Section doesn't exist!")
return [], None
else:
EdkLogger.error("GenFds", GENFDS_ERROR, "File: %s miss Version Section value" %InfFileName)
|