mirror of
https://github.com/kennethreitz/gistapi.py.git
synced 2026-06-05 23:10:17 +00:00
requests fix
This commit is contained in:
+1
-1
@@ -222,7 +222,7 @@ class Gists(object):
|
||||
|
||||
# Return a list of Gist objects
|
||||
return [Gist(json=g)
|
||||
for g in json.load(requests.get(_url).content)['gists']]
|
||||
for g in json.loads(requests.get(_url).content)['gists']]
|
||||
|
||||
|
||||
class GistComment(object):
|
||||
|
||||
Reference in New Issue
Block a user