mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
8 lines
279 B
Python
8 lines
279 B
Python
|
import json
|
||
|
|
||
|
with open("/etc/ssowat/conf.json.persistent", "r") as jsonFile:
|
||
|
data = json.load(jsonFile)
|
||
|
data["skipped_urls"].remove("/_matrix")
|
||
|
|
||
|
with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile:
|
||
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|