mirror of
https://github.com/certbot/certbot.git
synced 2026-04-15 22:20:28 -04:00
Replace xrange with range
This commit is contained in:
parent
17c4c7f68e
commit
e9531dc80b
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ class Authenticator(common.Plugin):
|
|||
response, validation = achall.response_and_validation()
|
||||
self._excute_r53_action(r53, achall, zone, validation, 'UPSERT', wait_for_change=True)
|
||||
|
||||
for _ in xrange(TTL*2):
|
||||
for _ in range(TTL*2):
|
||||
if response.simple_verify(
|
||||
achall.chall,
|
||||
achall.domain,
|
||||
|
|
|
|||
Loading…
Reference in a new issue