From b1822aff6c38d9de6954fd563fd7a040f992680e Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Wed, 11 Mar 2020 13:02:48 -0700 Subject: [PATCH] remove now-unnecessary include and pylint disable --- certbot-apache/MANIFEST.in | 1 - certbot-apache/certbot_apache/_internal/configurator.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/certbot-apache/MANIFEST.in b/certbot-apache/MANIFEST.in index 8fd9b6814..9e4913a03 100644 --- a/certbot-apache/MANIFEST.in +++ b/certbot-apache/MANIFEST.in @@ -1,7 +1,6 @@ include LICENSE.txt include README.rst recursive-include tests * -include certbot_apache/_internal/options-ssl-apache.conf recursive-include certbot_apache/_internal/augeas_lens *.aug recursive-include certbot_apache/_internal/tls_configs *.conf global-exclude __pycache__ diff --git a/certbot-apache/certbot_apache/_internal/configurator.py b/certbot-apache/certbot_apache/_internal/configurator.py index 9fa78d08a..c154c5ab8 100644 --- a/certbot-apache/certbot_apache/_internal/configurator.py +++ b/certbot-apache/certbot_apache/_internal/configurator.py @@ -1,8 +1,7 @@ """Apache Configurator.""" # pylint: disable=too-many-lines from collections import defaultdict -# https://github.com/PyCQA/pylint/issues/73 -from distutils.version import LooseVersion # pylint: disable=no-name-in-module, import-error +from distutils.version import LooseVersion import copy import fnmatch import logging