8000 Merge pull request #884 from jacquerie/fix-issue-883 · shalevy1/github3.py@b8e7aa8 · GitHub
[go: up one dir, main page]

Skip to content

Commit b8e7aa8

Browse files
authored
Merge pull request sigmavirus24#884 from jacquerie/fix-issue-883
Don't require a gist to have an owner
2 parents aba7b23 + c7665a4 commit b8e7aa8

File tree

3 files changed

+1615
-1
lines changed

3 files changed

+1615
-1
lines changed

src/github3/gists/gist.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ def _update_attributes(self, gist):
4848
self.git_push_url = gist['git_push_url']
4949
self.html_url = gist['html_url']
5050
self.id = gist['id']
51-
self.owner = users.ShortUser(gist['owner'], self)
51+
self.owner = gist.get('owner')
52+
if self.owner is not None:
53+
self.owner = users.ShortUser(self.owner, self)
5254
self.public = gist['public']
5355
self.updated_at = self._strptime(gist['updated_at'])
5456
self.url = self._api = gist['url']

0 commit comments

Comments
 (0)
0