From 503b9a0125ca8c43f032a4cbb7b474195271a87a Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Wed, 8 Oct 2014 11:59:03 +0200 Subject: [PATCH] StandardError -> Exception Try to add some python codes [untested] --- update_from_db.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/update_from_db.py b/update_from_db.py index 2aefcf7..be6930c 100755 --- a/update_from_db.py +++ b/update_from_db.py @@ -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)