Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed Jun 27, 2024
1 parent cc0c626 commit 79f0d77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from requests_toolbelt.utils import dump # type: ignore


VERSION = "2.4.2"
VERSION = "2.4.5"

TAG_REGEX = "|".join(
[
Expand Down
2 changes: 1 addition & 1 deletion services/bugzilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def get_issues(self, issues: list[dict]) -> list[Issue | None]:
found_ids = {str(issue.raw["id"]) for issue in found}
not_found = [
self._not_found(
url=f"{self.url}/show_bug.cgi?id={issue['issue_id']}",
tag=f"{self.tag}#{issue['issue_id']}",
url=f"{self.url}/show_bug.cgi?id={issue['issue_id']}",
)
for issue in issues
if issue["issue_id"] not in found_ids
Expand Down

0 comments on commit 79f0d77

Please sign in to comment.