mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Use " instead of ' (you can laugh at me)
This commit is contained in:
parent
36918232c0
commit
7bfc17a51d
6 changed files with 24 additions and 25 deletions
|
@ -83,8 +83,8 @@ for section, values in INITIAL_CONFIG.items():
|
|||
|
||||
_CONFIG_PARSER.read("/etc/radicale/config")
|
||||
_CONFIG_PARSER.read(os.path.expanduser("~/.config/radicale/config"))
|
||||
if 'RADICALE_CONFIG' in os.environ:
|
||||
_CONFIG_PARSER.read(os.environ['RADICALE_CONFIG'])
|
||||
if "RADICALE_CONFIG" in os.environ:
|
||||
_CONFIG_PARSER.read(os.environ["RADICALE_CONFIG"])
|
||||
|
||||
# Wrap config module into ConfigParser instance
|
||||
sys.modules[__name__] = _CONFIG_PARSER
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue