From 44b11db1aeae420640438e8973a302936bb9089d Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 7 May 2011 14:32:21 +0200 Subject: [PATCH] Typo fix in a logging message --- radicale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/__init__.py b/radicale/__init__.py index ba20cf9..e446b6c 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -130,7 +130,7 @@ class Application(object): def __call__(self, environ, start_response): """Manage a request.""" - log.LOGGER.info("%s request at %s recieved" % ( + log.LOGGER.info("%s request at %s received" % ( environ["REQUEST_METHOD"], environ["PATH_INFO"])) log.LOGGER.debug("Request headers:\n%s" % environ.items())