StandardError -> Exception

Try to add some python codes [untested]
This commit is contained in:
SmallJoker 2014-10-08 11:59:03 +02:00
parent a4921558f3
commit 503b9a0125
1 changed files with 6 additions and 3 deletions

View File

@ -17,11 +17,13 @@ def addpage(page):
try:
c.request("GET", "/api/get.json.php?getlist&page=" + str(page) + "&outformat=base64")
r = c.getresponse()
except StandardError:
except Exception:
if r != 0:
if r.status != 200:
print("Error", r.status)
exit(r.status)
return
data = r.read().decode()
l = json.loads(data)
if not l["success"]:
@ -41,11 +43,12 @@ def addpage(page):
try:
c.request("GET", "/skins/1/" + str(s["id"]) + ".png")
r = c.getresponse()
except StandardError:
except Exception:
if r != 0:
if r.status != 200:
print("Error", r.status)
exit(r.status)
continue
data = r.read()
f = open(skinsdir + "character_" + str(i) + "_preview.png", "wb")
f.write(data)