Skip to content

Commit 3f5fedc

Browse files
Gonchik TsymzhitovGonchik Tsymzhitov
authored andcommitted
Polish 1.14.3 release
1 parent 70d2668 commit 3f5fedc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.14.3
1+
1.14.3

atlassian/bitbucket.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,7 @@ def get_pull_requests_activities(self, project, repository, pull_request_id, sta
626626
:param project:
627627
:param repository:
628628
:param pull_request_id: the ID of the pull request within the repository
629+
:param start:
629630
:return:
630631
"""
631632
url = 'rest/api/1.0/projects/{project}/repos/{repository}/pull-requests/{pullRequestId}/activities'.format(
@@ -1333,6 +1334,7 @@ def upload_file(self, project, repository, content, message, branch, filename):
13331334
:param content:
13341335
:param message:
13351336
:param branch:
1337+
:param filename
13361338
:return:
13371339
"""
13381340
data = {

atlassian/confluence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ def get_subtree_of_content_ids(self, page_id):
13321332
output.append(page_id)
13331333
children_pages = self.get_page_child_by_type(page_id)
13341334
for page in children_pages:
1335-
child_subtree = self.get_subtree_of_content_ids(self, page.get('id'))
1335+
child_subtree = self.get_subtree_of_content_ids(page.get('id'))
13361336
if child_subtree:
13371337
output.extend([p for p in child_subtree])
13381338
return set(output)

0 commit comments

Comments
 (0)