From 5e8dec66836569d4ecd5ac43937a6f9fd606e0a7 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 20 Feb 2012 17:45:47 +0100 Subject: [PATCH] Ignore the .props when giving children --- radicale/storage/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/storage/filesystem.py b/radicale/storage/filesystem.py index 8360e636..6dbdbb74 100644 --- a/radicale/storage/filesystem.py +++ b/radicale/storage/filesystem.py @@ -92,7 +92,7 @@ class Collection(ical.Collection): @classmethod def is_item(cls, path): abs_path = os.path.join(FOLDER, path.replace("/", os.sep)) - return os.path.isfile(abs_path) + return os.path.isfile(abs_path) and not abs_path.endswith(".props") @property def last_modified(self):