mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Rename backends from None to none
All other backend names are lower case.
This commit is contained in:
parent
edaf21561d
commit
eba6621f17
4 changed files with 16 additions and 16 deletions
|
@ -64,7 +64,7 @@ from importlib import import_module
|
|||
def load(configuration, logger):
|
||||
"""Load the authentication manager chosen in configuration."""
|
||||
auth_type = configuration.get("auth", "type")
|
||||
if auth_type == "None":
|
||||
if auth_type in ("None", "none"): # DEPRECATED: use "none"
|
||||
class_ = NoneAuth
|
||||
elif auth_type == "remote_user":
|
||||
class_ = RemoteUserAuth
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue