Archived
1
0

apply fix for json parse error

This commit is contained in:
jeff 2015-10-14 13:48:03 -04:00
parent f1037d888d
commit a9ea094144

View File

@ -119,7 +119,11 @@ class Getter:
"""
r = requests.get(self.url)
if r.status_code == 200:
try:
j = r.json()
except:
pass
else:
for t in j['threads']:
posts = t['posts']
for post in posts: