randomreddit: handle invalid json response

This commit is contained in:
mutantmonkey
2012-06-23 21:56:16 -07:00
parent 6ecbe4ca18
commit 9f11190f0b

View File

@@ -35,8 +35,11 @@ def randomreddit(phenny, input):
except:
raise GrumbleError('Reddit or subreddit unreachable.')
reddit = json.loads(resp)
post = choice(reddit['data']['children'])
try:
reddit = json.loads(resp)
post = choice(reddit['data']['children'])
except:
raise GrumbleError('Error parsing response from Reddit.')
nsfw = False
if post['data']['over_18']: