Merge pull request #1166 from makermelissa/boardinfo

Fix starting bootloader json key for gen board info script
This commit is contained in:
Dan Halbert 2023-03-14 12:24:28 -04:00 committed by GitHub
commit 78a1c98853
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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