diff options
author | Daniel Roesler <diafygi@gmail.com> | 2016-08-02 14:36:31 -0700 |
---|---|---|
committer | Daniel Roesler <diafygi@gmail.com> | 2016-08-02 14:36:31 -0700 |
commit | 8749f651907729d09cfbd1f0e54481a5b7b59036 (patch) | |
tree | 9eeacc76d60884a9ed1144f320cd375834f007ee /revoke_crt.py | |
parent | a5ddc47769e9631f029552b8aa8e4f24f575adcc (diff) |
fixed agreement url
Diffstat (limited to 'revoke_crt.py')
-rw-r--r-- | revoke_crt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revoke_crt.py b/revoke_crt.py index 2f5eb11..7ab79c1 100644 --- a/revoke_crt.py +++ b/revoke_crt.py @@ -12,7 +12,7 @@ def revoke_crt(pubkey, crt): """ #CA = "https://acme-staging.api.letsencrypt.org" CA = "https://acme-v01.api.letsencrypt.org" - TERMS = "https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf" + TERMS = "https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf" nonce_req = urllib2.Request("{0}/directory".format(CA)) nonce_req.get_method = lambda : 'HEAD' |