From e907e9011998d19faca9bc501bc749d64591c860 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 10 Apr 2025 05:44:35 +0200 Subject: [PATCH] fix a typo --- radicale/app/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/__init__.py b/radicale/app/__init__.py index f5cfc1aa..37a4edd4 100644 --- a/radicale/app/__init__.py +++ b/radicale/app/__init__.py @@ -257,7 +257,7 @@ class Application(ApplicationPartDelete, ApplicationPartHead, logger.debug("Called by reverse proxy, remove base prefix %r from path: %r => %r", base_prefix, path, path_new) path = path_new else: - logger.warning("Called by reverse proxy, cannot removed base prefix %r from path: %r as not matching", base_prefix, path) + logger.warning("Called by reverse proxy, cannot remove base prefix %r from path: %r as not matching", base_prefix, path) # Get function corresponding to method function = getattr(self, "do_%s" % request_method, None)