Cosmetics: Don't use % for logging
This commit is contained in:
@ -63,7 +63,7 @@ from importlib import import_module
|
||||
def load(configuration, logger):
|
||||
"""Load the authentication manager chosen in configuration."""
|
||||
auth_type = configuration.get("auth", "type")
|
||||
logger.debug("Authentication type is %s" % auth_type)
|
||||
logger.debug("Authentication type is %s", auth_type)
|
||||
if auth_type == "None":
|
||||
return lambda user, password: True
|
||||
elif auth_type == "htpasswd":
|
||||
|
Reference in New Issue
Block a user