chiark / gitweb /
fix bare except to satisfy newer pycodestyle
authorMarcus Hoffmann <bubuiic@aol.com>
Wed, 4 Oct 2017 17:23:53 +0000 (19:23 +0200)
committerMarcus Hoffmann <bubuiic@aol.com>
Wed, 4 Oct 2017 17:23:53 +0000 (19:23 +0200)
fdroidserver/common.py

index 8b35d49e1d70e85e292c0c447c030799c757c9b3..794504e311798a44a3b033caa73c1df40a80addf 100644 (file)
@@ -2348,7 +2348,7 @@ def verify_apk_signature(apk, min_sdk_version=None):
         try:
             verify_jar_signature(apk)
             return True
-        except:
+        except Exception:
             pass
     return False