Merge pull request #1166 from makermelissa/boardinfo
Fix starting bootloader json key for gen board info script
This commit is contained in:
commit
78a1c98853
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ def main():
|
|||
|
||||
# Get CircuitPython Bootloader Info
|
||||
with open("./_data/bootloaders.json", "rt") as f:
|
||||
bootloaders = json.load(f)
|
||||
bootloaders = json.load(f)['bootloaders']
|
||||
|
||||
with open("./_data/files.json", "rt") as f:
|
||||
board_info = json.load(f)
|
||||
|
|
|
|||
Loading…
Reference in a new issue