From f094e72788b79d1660875688091bcbb000e0320a Mon Sep 17 00:00:00 2001 From: Marco Rougeth Date: Sun, 4 May 2014 23:52:37 -0300 Subject: [PATCH] Fixing TypeError when creating gist --- dpaste/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpaste/views.py b/dpaste/views.py index 6e039bf..ff71c89 100644 --- a/dpaste/views.py +++ b/dpaste/views.py @@ -221,7 +221,7 @@ def snippet_gist(request, snippet_id): # pragma: no cover try: payload = json.dumps(data) response = requests.post('https://api.github.com/gists', data=payload) - response_dict = json.loads(response.content) + response_dict = response.json() gist_url = response_dict.get('html_url') # Github could be down, could return invalid JSON, it's rare