Fix subtype in PartitionTable.find_by_type
Fix ptype->subtype Closes https://github.com/espressif/esp-idf/pull/4723
This commit is contained in:
parent
5799999e41
commit
994e632a59
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class PartitionTable(list):
|
||||||
subtype = SUBTYPES[int(ptype)][subtype]
|
subtype = SUBTYPES[int(ptype)][subtype]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
try:
|
try:
|
||||||
ptype = int(ptype, 0)
|
subtype = int(subtype, 0)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue