From ca28bae1a4f3cc201e6e637af879c5a50d7ac32b Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Tue, 27 Aug 2019 16:51:19 +0300 Subject: [PATCH 1/3] Update certbot-apache/certbot_apache/parsernode_util.py Co-Authored-By: Brad Warren --- certbot-apache/certbot_apache/parsernode_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/parsernode_util.py b/certbot-apache/certbot_apache/parsernode_util.py index fecc635ce..0211232a7 100644 --- a/certbot-apache/certbot_apache/parsernode_util.py +++ b/certbot-apache/certbot_apache/parsernode_util.py @@ -43,7 +43,7 @@ def commentnode_kwargs(kwargs): :param dict kwargs: Keyword argument dictionary to validate. - :returns: Tuple of validated and prepared arguments and the remaining kwargs. + :returns: Tuple of validated and prepared arguments and ParserNode kwargs. """ kwargs.setdefault("dirty", False) kwargs = validate_kwargs(kwargs, ["ancestor", "dirty", "filepath", "comment"]) From 5dc64c36e2b5153bbf2cdd82aac8f2701e8dd192 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Tue, 27 Aug 2019 16:52:05 +0300 Subject: [PATCH 2/3] Update certbot-apache/certbot_apache/parsernode_util.py Co-Authored-By: Brad Warren --- certbot-apache/certbot_apache/parsernode_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/certbot_apache/parsernode_util.py b/certbot-apache/certbot_apache/parsernode_util.py index 0211232a7..7524e4920 100644 --- a/certbot-apache/certbot_apache/parsernode_util.py +++ b/certbot-apache/certbot_apache/parsernode_util.py @@ -59,7 +59,7 @@ def node_kwargs(kwargs): :param dict kwargs: Keyword argument dictionary to validate. - :returns: Tuple of validated and prepared arguments. + :returns: Tuple of validated and prepared arguments and ParserNode kwargs. """ kwargs.setdefault("dirty", False) kwargs.setdefault("enabled", True) From c70f4431deb58bd51cd98719f8a99272ac80cc7c Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Tue, 27 Aug 2019 16:59:26 +0300 Subject: [PATCH 3/3] 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 db774dde1..a76ecf9d1 100644 --- a/certbot-apache/certbot_apache/interfaces.py +++ b/certbot-apache/certbot_apache/interfaces.py @@ -233,7 +233,7 @@ class DirectiveNode(ParserNode): :param name: Name or key of the DirectiveNode object. :param tuple parameters: Tuple of str parameters for this DirectiveNode. :param ancestor: BlockNode ancestor for this DirectiveNode, or None for - root configuratio node. + root configuration node. :param filepath: Filesystem path for the file where this DirectiveNode does or should exist in the filesystem, or None for directives introduced in the httpd command line.