Skip to content

Commit

Permalink
Update versions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 19, 2023
1 parent 9b9979b commit d948b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp_debugtoolbar/panels/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_packages(cls) -> List[Dict[str, str]]:
for distribution in Distribution.discover():
name = distribution.metadata["Name"]
dependencies = [d for d in distribution.requires or ()]
url = distribution.metadata["Home-page"]
url = distribution.metadata.get("Home-page")

packages.append(
{
Expand Down

0 comments on commit d948b93

Please sign in to comment.