import psutil
# Own modules
+from fb_tools import MAX_TIMEOUT
from fb_tools.xlate import format_list
from fb_pdnstools.zone import PowerDNSZone
PdnsConfiguration.default_pdns_api_port),
)
+ help_msg=_(
+ "The timeout in seconds for the communication with the PowerDNS-API. "
+ "Default: {} seconds.").format(PdnsConfiguration.default_pdns_timeout)
+ pdns_group.add_argument(
+ '-T', '--timeout', meta=_("SECONDS"), type=int, dest='timeout',
+ help=help_msg,
+ )
+
super(PpPDNSApplication, self).init_arg_parser()
# -------------------------------------------------------------------------