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
1 changed files with 1 additions and 1 deletions

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: