diff options
author | Magnus Ahltorp <map@kth.se> | 2015-06-10 00:50:23 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2015-06-10 00:51:07 +0200 |
commit | 75153300f3427f6fbcc7da3f64738ff4f57b2055 (patch) | |
tree | 6373455d873a6ac9600b891de088282560d2dc1a /tools | |
parent | 6ddc1e97a22505e000c65101a9b690e0f7203ea1 (diff) |
Don't exit on signing errormergesignfailover
Diffstat (limited to 'tools')
-rw-r--r-- | tools/certtools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/certtools.py b/tools/certtools.py index 045bc55..7796a2c 100644 --- a/tools/certtools.py +++ b/tools/certtools.py @@ -326,7 +326,7 @@ def get_signature(baseurl, data, key=None): return base64.b64decode(parsed_result.get(u"result")) except urllib2.HTTPError, e: print "ERROR: get_signature", e.read() - sys.exit(1) + raise e def create_signature(baseurl, data, key=None): unpacked_signature = get_signature(baseurl, data, key) |