Merge remote-tracking branch 'origin/master' into split-plugin-selection

Conflicts on "none" -> "None"
This commit is contained in:
Peter Eckersley
2016-03-24 18:03:26 -07:00
6 changed files with 127 additions and 24 deletions
+2 -2
View File
@@ -137,8 +137,8 @@ noninstaller_plugins = ["webroot", "manual", "standalone"]
def record_chosen_plugins(config, plugins, auth, inst):
"Update the config entries to reflect the plugins we actually selected."
cn = config.namespace
cn.authenticator = plugins.find_init(auth).name if auth else "none"
cn.installer = plugins.find_init(inst).name if inst else "none"
cn.authenticator = plugins.find_init(auth).name if auth else "None"
cn.installer = plugins.find_init(inst).name if inst else "None"
def choose_configurator_plugins(config, plugins, verb):