1
0
mirror of https://github.com/laurivosandi/certidude synced 2024-09-28 21:11:42 +00:00

cli: Send Accept: application/x-pem-file while downloading CRL

This commit is contained in:
Lauri Võsandi 2016-03-29 23:39:19 +03:00
parent 833fb82354
commit 5bdf986b47

View File

@ -46,7 +46,7 @@ def certidude_request_certificate(server, key_path, request_path, certificate_pa
os.rename(authority_partial, authority_path)
# Fetch certificate revocation list
r = requests.get(revoked_url, stream=True)
r = requests.get(revoked_url, headers={'accept': 'application/x-pem-file'}, stream=True)
click.echo("Fetching CRL from %s to %s" % (revoked_url, revocations_path))
revocations_partial = tempfile.mktemp(prefix=revocations_path + ".part")
with open(revocations_partial, 'wb') as f: