mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Python 3 support and minor fixes.
This commit is contained in:
parent
4a0d3936e8
commit
4ee09cf817
11 changed files with 66 additions and 70 deletions
|
@ -25,7 +25,7 @@ This module loads a list of users with access rights, according to the acl
|
|||
configuration.
|
||||
"""
|
||||
|
||||
from .. import config
|
||||
from radicale import config
|
||||
|
||||
_acl = __import__(config.get("acl", "type"), locals(), globals())
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ Fake ACL.
|
|||
Just load the default user set in configuration, with no rights management.
|
||||
"""
|
||||
|
||||
from .. import config
|
||||
from radicale import config
|
||||
|
||||
def users():
|
||||
"""Get the list of all users."""
|
||||
|
|
|
@ -26,7 +26,7 @@ Load the list of users according to the htpasswd configuration.
|
|||
|
||||
# TODO: Manage rights
|
||||
|
||||
from .. import config
|
||||
from radicale import config
|
||||
|
||||
def users():
|
||||
"""Get the list of all users."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue