Skip to content

Commit

Permalink
chunk != description
Browse files Browse the repository at this point in the history
  • Loading branch information
duckinator committed Aug 9, 2024
1 parent 1bd38b3 commit 5c1a72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_site/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def build_table():
"""Generate a table of version information."""
print("Building table...")
os_names = sorted([data['description'] for data in raw_data()], key=str.lower)
os_data = {chunk['description']: description for chunk in raw_data()}
os_data = {chunk['description']: chunk for chunk in raw_data()}

table = [
"<table>",
Expand Down

0 comments on commit 5c1a72d

Please sign in to comment.