From 15381618c9d72c953d1830d51ce3ba8f7e1da895 Mon Sep 17 00:00:00 2001 From: Josue-T Date: Fri, 26 May 2017 12:36:04 +0200 Subject: [PATCH] Update remove_sso_conf.py --- conf/remove_sso_conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/remove_sso_conf.py b/conf/remove_sso_conf.py index ff59377..d3f27c1 100644 --- a/conf/remove_sso_conf.py +++ b/conf/remove_sso_conf.py @@ -2,8 +2,8 @@ import json with open("/etc/ssowat/conf.json.persistent", "r") as jsonFile: data = json.load(jsonFile) - data["unprotected_urls"].remove("/seafhttp") - data["unprotected_urls"].remove("/seafdav") + data["skipped_urls"].remove("/seafhttp") + data["skipped_urls"].remove("/seafdav") with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile: - jsonFile.write(json.dumps(data, indent=4, sort_keys=True)) \ No newline at end of file + jsonFile.write(json.dumps(data, indent=4, sort_keys=True))