From 71c243035e169149f6448dc50b085c8781d39779 Mon Sep 17 00:00:00 2001 From: Vincent Untz Date: Thu, 18 Sep 2014 14:21:10 +0200 Subject: [PATCH] Remove props file when deleting a collection with multifilesystem --- radicale/storage/multifilesystem.py | 1 + 1 file changed, 1 insertion(+) diff --git a/radicale/storage/multifilesystem.py b/radicale/storage/multifilesystem.py index ca2d70c..647d7e7 100644 --- a/radicale/storage/multifilesystem.py +++ b/radicale/storage/multifilesystem.py @@ -60,6 +60,7 @@ class Collection(filesystem.Collection): def delete(self): shutil.rmtree(self._path) + os.remove(self._props_path) def remove(self, name): if os.path.exists(os.path.join(self._path, name)):