summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitlab/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 60d10ed..2c93e45 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -1010,7 +1010,7 @@ class ProjectCommitStatusManager(BaseManager):
class ProjectCommitComment(GitlabObject):
_url = '/projects/%(project_id)s/repository/commits/%(commit_id)s/comments'
canUpdate = False
- cantGet = False
+ canGet = False
canDelete = False
requiredUrlAttrs = ['project_id', 'commit_id']
requiredCreateAttrs = ['note']