AutoPEP8 1.3.2 slightly changed automatic formatting

This commit is contained in:
Oliver Smith 2017-07-14 07:00:07 +02:00
parent 4616484cb7
commit 63aa1eae1b
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ def verify_signature(args, files, sigkey_path):
sigkey_path, "-signature", files[
"sig"]["temp_path"],
files["apk"]["temp_path"]], check=True)
except:
except BaseException:
os.unlink(files["sig"]["temp_path"])
os.unlink(files["apk"]["temp_path"])
raise RuntimeError("Failed to validate signature of apk.static."

View File

@ -44,7 +44,7 @@ class log_handler(logging.StreamHandler):
except (KeyboardInterrupt, SystemExit):
raise
except:
except BaseException:
self.handleError(record)