mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Merge pull request #74 from kuba/py26-compat
py26 doesn't support set {} constructor. Use frozenset.
This commit is contained in:
commit
ee726d2c23
1 changed files with 2 additions and 2 deletions
|
|
@ -52,10 +52,10 @@ INVALID_EXT = ".acme.invalid"
|
|||
CHALLENGE_PREFERENCES = ["dvsni", "recoveryToken"]
|
||||
|
||||
# Mutually Exclusive Challenges - only solve 1
|
||||
EXCLUSIVE_CHALLENGES = [set(["dvsni", "simpleHttps"])]
|
||||
EXCLUSIVE_CHALLENGES = [frozenset(["dvsni", "simpleHttps"])]
|
||||
|
||||
# These are challenges that must be solved by a Configurator object
|
||||
CONFIG_CHALLENGES = {"dvsni", "simpleHttps"}
|
||||
CONFIG_CHALLENGES = frozenset(["dvsni", "simpleHttps"])
|
||||
|
||||
# Rewrite rule arguments used for redirections to https vhost
|
||||
REWRITE_HTTPS_ARGS = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue