diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-22 10:28:39 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-22 10:28:39 +0200 |
commit | d5289fe9369621aae9ac33bbd102b400dda97414 (patch) | |
tree | e100901a393e55874ec69c94fb056b7cf0d697fd /gitlab/v4/objects.py | |
parent | b1c63927aaa7c753fa622af5ac3637102ba9aea3 (diff) | |
download | gitlab-d5289fe9369621aae9ac33bbd102b400dda97414.tar.gz |
[cli] Fix the non-verbose output of ProjectCommitComment
Closes #433
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 6650fc0..4f57158 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1411,6 +1411,7 @@ class ProjectCommitStatusManager(ListMixin, CreateMixin, RESTManager): class ProjectCommitComment(RESTObject): _id_attr = None + _short_print_attr = 'note' class ProjectCommitCommentManager(ListMixin, CreateMixin, RESTManager): |