Skip to content

Commit 7c3dcee

Browse files
authored
Fixed wrong Pull Requests Activities path (#1326)
1 parent 26f450e commit 7c3dcee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/bitbucket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1781,7 +1781,7 @@ def get_pull_requests_activities(
17811781
:param start:
17821782
:return:
17831783
"""
1784-
url = "{}/activities".format(self._url_pull_request(project_key, repository_slug, pull_request_id))
1784+
url = "{}/activity".format(self._url_pull_request(project_key, repository_slug, pull_request_id))
17851785
params = {}
17861786
if start:
17871787
params["start"] = start

0 commit comments

Comments
 (0)