1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

Use relative imports for acl and storage modules

This commit is contained in:
Guillaume Ayoub 2012-02-08 16:56:58 +01:00
parent 8dcc613f0a
commit f9d041ba6b
2 changed files with 3 additions and 2 deletions

View file

@ -53,5 +53,5 @@ def load():
else:
PUBLIC_USERS.extend(_config_users("public_users"))
PRIVATE_USERS.extend(_config_users("private_users"))
module = __import__("radicale.acl", fromlist=[acl_type])
module = __import__("acl.%s" % acl_type, globals=globals(), level=2)
return getattr(module, acl_type)