mirror of https://github.com/acidanthera/audk.git
BaseTools: Eot failed when enable python3
The Eot will report error when python3 enabled. We replaced sdict with collections.OrderedDict in python3 patch set, but the sdict implement "append" method which is not implemented in collections.OrderedDict. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
07f4e26eb6
commit
dde29b9ca5
|
@ -1105,7 +1105,7 @@ class MultipleFv(FirmwareVolume):
|
||||||
Fv.frombuffer(Buf, 0, len(Buf))
|
Fv.frombuffer(Buf, 0, len(Buf))
|
||||||
|
|
||||||
self.BasicInfo.append([Fv.Name, Fv.FileSystemGuid, Fv.Size])
|
self.BasicInfo.append([Fv.Name, Fv.FileSystemGuid, Fv.Size])
|
||||||
self.FfsDict.append(Fv.FfsDict)
|
self.FfsDict.update(Fv.FfsDict)
|
||||||
|
|
||||||
## Class Eot
|
## Class Eot
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue