mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 00:35:50 +02:00
@bmw noticed we were iterating over the wrong thing!
This commit is contained in:
+1
-1
@@ -775,7 +775,7 @@ def _restore_plugin_configs(config, renewalparams):
|
||||
plugin_prefixes = [renewalparams["authenticator"]]
|
||||
if renewalparams.get("installer", None) is not None:
|
||||
plugin_prefixes.append(renewalparams["installer"])
|
||||
for plugin_prefix in set(renewalparams):
|
||||
for plugin_prefix in set(plugin_prefixes):
|
||||
for config_item, config_value in renewalparams.iteritems():
|
||||
if config_item.startswith(plugin_prefix + "_"):
|
||||
# Avoid confusion when, for example, "csr = None" (avoid
|
||||
|
||||
Reference in New Issue
Block a user