mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
this is always an instance method
This commit is contained in:
parent
c8428de0a6
commit
1c0bfd714b
1 changed files with 2 additions and 2 deletions
|
|
@ -20,9 +20,9 @@ class Payment_Challenge(Challenge):
|
|||
|
||||
def perform(self, quiet=True):
|
||||
if quiet:
|
||||
dialog.Dialog().msgbox(get_display_string(), width=70)
|
||||
dialog.Dialog().msgbox(self.get_display_string(), width=70)
|
||||
else:
|
||||
print get_display_string()
|
||||
print self.get_display_string()
|
||||
raw_input('')
|
||||
|
||||
self.times_performed += 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue