Allow ~ in rights filename
This commit is contained in:
parent
45e844cda2
commit
fce91e7060
@ -45,6 +45,8 @@ user1: r
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import os.path
|
||||||
|
|
||||||
from radicale import config, log
|
from radicale import config, log
|
||||||
from radicale.rights import owner_only
|
from radicale.rights import owner_only
|
||||||
# Manage Python2/3 different modules
|
# Manage Python2/3 different modules
|
||||||
@ -58,7 +60,7 @@ except ImportError:
|
|||||||
# pylint: enable=F0401
|
# pylint: enable=F0401
|
||||||
|
|
||||||
|
|
||||||
FILENAME = config.get("rights", "file")
|
FILENAME = os.path.expanduser(config.get("rights", "file"))
|
||||||
if FILENAME:
|
if FILENAME:
|
||||||
log.LOGGER.debug("Reading rights from file %s" % FILENAME)
|
log.LOGGER.debug("Reading rights from file %s" % FILENAME)
|
||||||
RIGHTS = ConfigParser()
|
RIGHTS = ConfigParser()
|
||||||
|
Loading…
Reference in New Issue
Block a user