Skip to content

Commit

Permalink
Fixed wrong Pull Requests Activities path (#1326)
Browse files Browse the repository at this point in the history
  • Loading branch information
roboqo authored Feb 3, 2024
1 parent 26f450e commit 7c3dcee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atlassian/bitbucket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1781,7 +1781,7 @@ def get_pull_requests_activities(
:param start:
:return:
"""
url = "{}/activities".format(self._url_pull_request(project_key, repository_slug, pull_request_id))
url = "{}/activity".format(self._url_pull_request(project_key, repository_slug, pull_request_id))
params = {}
if start:
params["start"] = start
Expand Down

0 comments on commit 7c3dcee

Please sign in to comment.