mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
actually the URL in a payment challenge is element #0 of the data (which is a list)
This commit is contained in:
parent
56411b57a8
commit
e3c819178f
1 changed files with 1 additions and 1 deletions
|
|
@ -293,7 +293,7 @@ def challenge_factory(r, req_filepath, key_filepath, config):
|
|||
dn.append(chall.name)
|
||||
|
||||
if chall.type == r.Payment:
|
||||
url = chall.data
|
||||
url = chall.data[0]
|
||||
challenges.append(Payment_Challenge(url))
|
||||
|
||||
#if chall.type == r.Interactive:
|
||||
|
|
|
|||
Loading…
Reference in a new issue