Rename backends from None to none

All other backend names are lower case.
This commit is contained in:
Unrud 2017-05-31 12:01:39 +02:00
parent edaf21561d
commit eba6621f17
4 changed files with 16 additions and 16 deletions

View file

@ -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