diff options
author | Greg Allen <GregoryEAllen@users.noreply.github.com> | 2016-11-09 16:56:04 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-09 16:56:04 -0600 |
commit | a25fef5076286543a522b907c51f2c9060262867 (patch) | |
tree | 6b1b5b550af91c52ef38eac4cfdc1e1a44e67f30 /gitlab/objects.py | |
parent | 570e75d5548daa971ff570a634dec0767e3ba6c0 (diff) | |
download | gitlab-a25fef5076286543a522b907c51f2c9060262867.tar.gz |
Add attr 'updated_at' to ProjectIssue
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index 5166b08..e532c09 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -1394,7 +1394,7 @@ class ProjectIssue(GitlabObject): 'labels', 'created_at'] optionalUpdateAttrs = ['title', 'description', 'assignee_id', 'milestone_id', 'labels', 'created_at', - 'state_event'] + 'updated_at', 'state_event'] shortPrintAttr = 'title' managers = ( ('notes', ProjectIssueNoteManager, |