From d256a0551c533328fa64a6adcdd53e4d6b966100 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 20 Feb 2012 16:32:32 +0100 Subject: [PATCH] Fix an indentation bug --- radicale/ical.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/ical.py b/radicale/ical.py index 6d386ebf..56281f6e 100644 --- a/radicale/ical.py +++ b/radicale/ical.py @@ -218,8 +218,8 @@ class Collection(object): else: if include_container: result.append(cls(path, principal)) - for child in cls.children(path): - result.append(child) + for child in cls.children(path): + result.append(child) else: if depth == "0": result.append(cls(path))