Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErica Portnoy <ebportnoy@gmail.com>2018-03-06 20:57:51 +0300
committerErica Portnoy <ebportnoy@gmail.com>2018-03-06 20:57:51 +0300
commit1b69165f4afe05533a756bb7993293f5543bc83c (patch)
tree45b608db4e05ba660905524dfb964c01be5413e4
parentd62c56f9c91a920a07f338bbc7aa53b7329624ac (diff)
disable not-callable for iter_entry_pointslint_shhhh
-rw-r--r--certbot/plugins/disco.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/certbot/plugins/disco.py b/certbot/plugins/disco.py
index 5a7e07ec0..062c11650 100644
--- a/certbot/plugins/disco.py
+++ b/certbot/plugins/disco.py
@@ -190,6 +190,7 @@ class PluginsRegistry(collections.Mapping):
def find_all(cls):
"""Find plugins using setuptools entry points."""
plugins = {}
+ # pylint: disable=not-callable
entry_points = itertools.chain(
pkg_resources.iter_entry_points(
constants.SETUPTOOLS_PLUGINS_ENTRY_POINT),