We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa28f3c commit e64ab37Copy full SHA for e64ab37
1 file changed
github3/issues/milestone.py
@@ -39,6 +39,8 @@ def __init__(self, mile, session=None):
39
self.due_on = None
40
if mile.get('due_on'):
41
self.due_on = self._strptime(mile.get('due_on'))
42
+ #: datetime object representing when the milestone was updated.
43
+ self.updated_at = self._strptime(mile.get('updated_at'))
44
45
def __repr__(self):
46
return '<Milestone [{0}]>'.format(self)
0 commit comments