From 6be7dab03f1e8cc29993f0758f92b7a88173f073 Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 14 Jan 2016 23:07:53 +0100 Subject: [PATCH] Correct function name --- radicale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/__init__.py b/radicale/__init__.py index 6c554b9..17aca24 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -453,7 +453,7 @@ class Application(object): def do_HEAD(self, environ, read_collections, write_collections, content, user): """Manage HEAD request.""" - status, headers, answer = self.get( + status, headers, answer = self.do_GET( environ, read_collections, write_collections, content, user) return status, headers, None