From 76281ad1ff1596ce34cfc26cd05d382b94a1a473 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 6 Mar 2025 08:52:54 +0100 Subject: [PATCH] tox fixes --- radicale/httputils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/httputils.py b/radicale/httputils.py index 1b653118..23f10ec1 100644 --- a/radicale/httputils.py +++ b/radicale/httputils.py @@ -207,7 +207,7 @@ def _serve_traversable( elif path == "/.web/infcloud/config.js": # adjust on the fly default config.js of InfCloud installation # logger.debug("Adjust on-the-fly default InfCloud config.js in served page: %r", path) - answer = answer.replace(b"location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+", b"location.pathname.replace(RegExp('/\.web\.infcloud/(index\.html)?$'),'')+") + answer = answer.replace(b"location.pathname.replace(RegExp('/+[^/]+/*(index\\.html)?$'),'')+", b"location.pathname.replace(RegExp('/\\.web\\.infcloud/(index\\.html)?$'),'')+") answer = answer.replace(b"'/caldav.php/',", b"'/',") answer = answer.replace(b"settingsAccount: true,", b"settingsAccount: false,") elif path == "/.web/infcloud/main.js":