From 6d77e24028cae5eabbf3c7ab93f8cd3cec67d98b Mon Sep 17 00:00:00 2001 From: Unrud Date: Fri, 5 Aug 2016 17:05:32 +0200 Subject: [PATCH] Remove old code This was missed while merging #457 and #459. --- radicale/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/radicale/__init__.py b/radicale/__init__.py index 0326f7f..d417490 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -459,9 +459,7 @@ class Application: if item: return client.CONFLICT, {}, None props = xmlutils.props_from_request(content) - collection = self.Collection.create_collection(path, props=props) - for key, value in props.items(): - collection.set_meta(key, value) + self.Collection.create_collection(path, props=props) return client.CREATED, {}, None def do_MOVE(self, environ, path, content, user):