From a8c587f984297ca31d1bb0b663563167003b9866 Mon Sep 17 00:00:00 2001 From: Unrud Date: Tue, 4 Sep 2018 03:33:38 +0200 Subject: [PATCH] Remove implementation for storage.move() --- radicale/storage/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/radicale/storage/__init__.py b/radicale/storage/__init__.py index ef65fa2..b653b2d 100644 --- a/radicale/storage/__init__.py +++ b/radicale/storage/__init__.py @@ -130,10 +130,7 @@ class BaseCollection: same name might already exist. """ - if item.collection.path == to_collection.path and item.href == to_href: - return - to_collection.upload(to_href, item) - item.collection.delete(item.href) + raise NotImplementedError @property def etag(self):