We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26e5535 + 1c1d922 commit ee726d2Copy full SHA for ee726d2
letsencrypt/client/CONFIG.py
@@ -52,10 +52,10 @@
52
CHALLENGE_PREFERENCES = ["dvsni", "recoveryToken"]
53
54
# Mutually Exclusive Challenges - only solve 1
55
-EXCLUSIVE_CHALLENGES = [set(["dvsni", "simpleHttps"])]
+EXCLUSIVE_CHALLENGES = [frozenset(["dvsni", "simpleHttps"])]
56
57
# These are challenges that must be solved by a Configurator object
58
-CONFIG_CHALLENGES = {"dvsni", "simpleHttps"}
+CONFIG_CHALLENGES = frozenset(["dvsni", "simpleHttps"])
59
60
# Rewrite rule arguments used for redirections to https vhost
61
REWRITE_HTTPS_ARGS = [
0 commit comments