Skip to content

Commit e907e90

Browse files
committed
fix a typo
1 parent e0f1d2d commit e907e90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

radicale/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def response(status: int, headers: types.WSGIResponseHeaders,
257257
logger.debug("Called by reverse proxy, remove base prefix %r from path: %r => %r", base_prefix, path, path_new)
258258
path = path_new
259259
else:
260-
logger.warning("Called by reverse proxy, cannot removed base prefix %r from path: %r as not matching", base_prefix, path)
260+
logger.warning("Called by reverse proxy, cannot remove base prefix %r from path: %r as not matching", base_prefix, path)
261261

262262
# Get function corresponding to method
263263
function = getattr(self, "do_%s" % request_method, None)

0 commit comments

Comments
 (0)