Pārlūkot izejas kodu

Fix an indentation bug

Guillaume Ayoub 14 gadi atpakaļ
vecāks
revīzija
d256a0551c
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      radicale/ical.py

+ 2 - 2
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))