Skip to content

Commit

Permalink
ProjectMergeRequest: fix Note() method
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Sep 14, 2013
1 parent 6b0c678 commit 4006ab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -2,6 +2,7 @@ Version 0.4

* Fix strings encoding (Closes #6)
* Allow to get a project commit (GitLab 6.1)
* ProjectMergeRequest: fix Note() method

Version 0.3

Expand Down
2 changes: 1 addition & 1 deletion gitlab.py
Expand Up @@ -748,7 +748,7 @@ class ProjectMergeRequest(GitlabObject):

def Note(self, id=None, **kwargs):
return self._getListOrObject(ProjectMergeRequestNote, id,
project_id=self.id,
project_id=self.project_id,
merge_request_id=self.id,
**kwargs)

Expand Down

0 comments on commit 4006ab2

Please sign in to comment.