Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-03-25 15:44:37 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-03-25 15:44:37 +0300
commit4eef08911aebb430dba7afa22edfbfcb1dd2ccc5 (patch)
treee722c2a7516c3773160aa9ec99141672bca622db /examples
parent920152bb177df0fdfc73b03786cffd786a2589ed (diff)
network2: priority queue polling, _retry_after
Diffstat (limited to 'examples')
-rw-r--r--examples/restified.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/restified.py b/examples/restified.py
index fe8aca22f..6ae103ce0 100644
--- a/examples/restified.py
+++ b/examples/restified.py
@@ -32,7 +32,7 @@ authzr = net.request_challenges(
regr=regr)
logging.debug(authzr)
-authzr, retry_after = net.poll(authzr)
+authzr, authzr_response = net.poll(authzr)
csr = M2Crypto.X509.load_request_string(pkg_resources.resource_string(
'letsencrypt.client.tests', os.path.join('testdata', 'csr.pem')))