Browse Source

Fix subtype in PartitionTable.find_by_type

Fix ptype->subtype

Closes https://github.com/espressif/esp-idf/pull/4723
boarchuz 6 years ago
parent
commit
d0eb6c9701
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/partition_table/gen_esp32part.py

+ 1 - 1
components/partition_table/gen_esp32part.py

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