Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add default_propagation_seconds #26

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add defalt_propagation_seconds
fupduck committed Jun 19, 2024
commit c2f1550a2ecf3375318d8f3be9fa587f310da4f6
4 changes: 2 additions & 2 deletions certbot_dns_hetzner/dns_hetzner.py
Original file line number Diff line number Diff line change
@@ -20,9 +20,9 @@ def __init__(self, *args, **kwargs):
self.credentials = None

@classmethod
def add_parser_arguments(cls, add): # pylint: disable=arguments-differ
def add_parser_arguments(cls, add, default_propagation_seconds = 60):
super(Authenticator, cls).add_parser_arguments(
add, default_propagation_seconds=60
add, default_propagation_seconds=default_propagation_seconds
)
add("credentials", help="Hetzner credentials INI file.")