1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

fix exception handling in dscanner and update.py

This commit is contained in:
Michael Pöhn 2017-03-22 14:07:54 +01:00
parent c45c4041a5
commit c15f02ed68
2 changed files with 7 additions and 7 deletions

View File

@ -302,7 +302,7 @@ class DockerDriver(object):
msg = msg.format(c, t, int(c / t * 100), j)
sys.stdout.write(msg)
sys.stdout.flush()
except:
except Exception:
pass
print("\nDONE!\n")

View File

@ -300,8 +300,8 @@ def update_wiki(apps, sortedids, apks):
try:
newpage = site.Pages[pagename]
newpage.save(text, summary='Auto-created')
except:
logging.error("...FAILED to create page '{0}'".format(pagename))
except Exception as e:
logging.error("...FAILED to create page '{0}': {1}".format(pagename, e))
# Purge server cache to ensure counts are up to date
site.pages['Repository Maintenance'].purge()
@ -925,8 +925,8 @@ def scan_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk):
f.write(get_icon_bytes(apkzip, iconsrc))
apk['icons'][density] = iconfilename
except:
logging.warn("Error retrieving icon file")
except Exception as e:
logging.warn("Error retrieving icon file: %s" % (e))
del apk['icons'][density]
del apk['icons_src'][density]
empty_densities.append(density)
@ -982,8 +982,8 @@ def scan_apk(apkcache, apkfilename, repodir, knownapks, use_date_from_apk):
im.thumbnail((size, size), Image.ANTIALIAS)
im.save(iconpath, "PNG")
empty_densities.remove(density)
except:
logging.warning("Invalid image file at %s" % last_iconpath)
except Exception as e:
logging.warning("Invalid image file at %s: %s" % (last_iconpath, e))
finally:
if fp:
fp.close()