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

fix bare except to satisfy newer pycodestyle

This commit is contained in:
Marcus Hoffmann 2017-10-04 19:23:53 +02:00
parent 1c5dccb413
commit 50ba108093

View 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