Fix subtype in PartitionTable.find_by_type

Fix ptype->subtype

Closes https://github.com/espressif/esp-idf/pull/4723
This commit is contained in:
boarchuz 2020-02-06 16:22:26 +11:00 committed by Roland Dobai
parent 5799999e41
commit 994e632a59

View file

@ -160,7 +160,7 @@ class PartitionTable(list):
subtype = SUBTYPES[int(ptype)][subtype]
except KeyError:
try:
ptype = int(ptype, 0)
subtype = int(subtype, 0)
except TypeError:
pass