We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0c678 commit 4006ab2Copy full SHA for 4006ab2
ChangeLog
@@ -2,6 +2,7 @@ Version 0.4
2
3
* Fix strings encoding (Closes #6)
4
* Allow to get a project commit (GitLab 6.1)
5
+ * ProjectMergeRequest: fix Note() method
6
7
Version 0.3
8
gitlab.py
@@ -748,7 +748,7 @@ class ProjectMergeRequest(GitlabObject):
748
749
def Note(self, id=None, **kwargs):
750
return self._getListOrObject(ProjectMergeRequestNote, id,
751
- project_id=self.id,
+ project_id=self.project_id,
752
merge_request_id=self.id,
753
**kwargs)
754
0 commit comments