mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Cosmetics: Don't use % for logging
This commit is contained in:
parent
9192a7751b
commit
e2b87d145f
4 changed files with 25 additions and 25 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue