mirror of
https://github.com/certbot/certbot.git
synced 2026-03-25 20:04:16 -04:00
the client is calling cleanup() on this challenge type too
This commit is contained in:
parent
c6fd758acf
commit
9f2a49705f
1 changed files with 4 additions and 0 deletions
|
|
@ -17,6 +17,10 @@ class Payment_Challenge(Challenge):
|
|||
self.url = url
|
||||
self.reason = reason
|
||||
self.times_performed = 0
|
||||
|
||||
def cleanup(self):
|
||||
# Currently, payment challenges do not appear to require any cleanup.
|
||||
pass
|
||||
|
||||
def perform(self, quiet=True):
|
||||
if quiet:
|
||||
|
|
|
|||
Loading…
Reference in a new issue