8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our document 8000 ation.
There was an error while loading. Please reload this page.
1 parent 1fcde29 commit 1093378Copy full SHA for 1093378
github3/issues/milestone.py
@@ -26,7 +26,9 @@ def _update_attributes(self, mile):
26
self.description = mile.get('description')
27
#: :class:`User <github3.users.User>` object representing the creator
28
#: of the milestone.
29
- self.creator = User(mile.get('creator'), self)
+ self.creator = None
30
+ if mile.get('creator'):
31
+ self.creator = User(mile.get('creator'), self)
32
#: Number of issues associated with this milestone which are still
33
#: open.
34
self.open_issues = mile.get('open_issues')
0 commit comments