Skip to content

Commit

Permalink
Merge pull request #376 from FoamyGuy/strip_before_parse
Browse files Browse the repository at this point in the history
strip lib string before parse
  • Loading branch information
tannewt authored Aug 19, 2024
2 parents 12a1ce8 + f994308 commit 464d350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adabot/lib/bundle_announcer.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_bundle_updates(full_repo_name: str) -> Tuple[Set[RepoResult], Set[RepoRe
x.strip(",") for x in relevant_line.split(" ")[2:]
]
for lib in lib_components:
comps = parse.parse("[{name:S}]({link_comp:S})", lib)
comps = parse.parse("[{name:S}]({link_comp:S})", lib.strip())
link: str = parse.search(
"{link:S}/releases", comps["link_comp"]
)["link"]
Expand Down

0 comments on commit 464d350

Please sign in to comment.