From e0ce3f9d6e444ea9023b8c8081c9ea4de578784a Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Fri, 16 Aug 2019 09:43:54 +0300 Subject: [PATCH 1/2] Update certbot-apache/certbot_apache/interfaces.py Co-Authored-By: Brad Warren --- certbot-apache/certbot_apache/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/interfaces.py b/certbot-apache/certbot_apache/interfaces.py index 23fe68ba3..9d5437152 100644 --- a/certbot-apache/certbot_apache/interfaces.py +++ b/certbot-apache/certbot_apache/interfaces.py @@ -252,7 +252,7 @@ class BlockNode(ParserNode): name: str # Tuple of parameters of this ParserNode object, excluding whitespaces. - parameters: Tuple[str] + parameters: Tuple[str, ...] # Tuple of ParserNode objects that are the children for this node. The order # of the children is the same s that of the parsed configuration block. From 1c122468c9effcf5cfa8b7911272a5cc3378c6c3 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Fri, 16 Aug 2019 09:44:03 +0300 Subject: [PATCH 2/2] Update certbot-apache/certbot_apache/interfaces.py Co-Authored-By: Brad Warren --- certbot-apache/certbot_apache/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/interfaces.py b/certbot-apache/certbot_apache/interfaces.py index 9d5437152..a8cab02aa 100644 --- a/certbot-apache/certbot_apache/interfaces.py +++ b/certbot-apache/certbot_apache/interfaces.py @@ -256,7 +256,7 @@ class BlockNode(ParserNode): # Tuple of ParserNode objects that are the children for this node. The order # of the children is the same s that of the parsed configuration block. - children: Tuple[ParserNode] + children: Tuple[ParserNode, ...] """ @abc.abstractmethod