Allow ~ in rights filename

This commit is contained in:
Guillaume Ayoub 2013-05-15 22:41:51 +02:00
parent 45e844cda2
commit fce91e7060

View File

@ -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()