From 8bb02b80c1d91718043221d4a04cd8b117a3344b Mon Sep 17 00:00:00 2001 From: James Kasten Date: Mon, 17 Aug 2015 13:12:15 -0700 Subject: [PATCH] fix typo --- letsencrypt/plugins/disco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/plugins/disco.py b/letsencrypt/plugins/disco.py index 51d251126..b6cdb1f99 100644 --- a/letsencrypt/plugins/disco.py +++ b/letsencrypt/plugins/disco.py @@ -215,7 +215,7 @@ class PluginsRegistry(collections.Mapping): Returns ``None`` if ``plugin`` is not found in the registry. """ - # use list instead of set beacse PluginEntryPoint is not hashable + # use list instead of set because PluginEntryPoint is not hashable candidates = [plugin_ep for plugin_ep in self._plugins.itervalues() if plugin_ep.initialized and plugin_ep.init() is plugin] assert len(candidates) <= 1