Skip to content

Commit

Permalink
BUG: Fix metadata:plugin_dependencies parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
T4mmi committed Dec 12, 2024
1 parent 4d47ba4 commit 59ca50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def get_plugin_deps(plugin_id: str) -> dict[str, Optional[str]]:
else:
name = dep
version_required = None
result[name] = version_required
result[name.strip()] = version_required.strip()
return result


Expand Down

0 comments on commit 59ca50f

Please sign in to comment.