Skip to content

Commit

Permalink
Add defalt_propagation_seconds (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
fupduck authored Jun 20, 2024
1 parent 8d28a58 commit ad46523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions certbot_dns_hetzner/dns_hetzner.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,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.")

Expand Down

0 comments on commit ad46523

Please sign in to comment.