Fix an indentation bug

This commit is contained in:
Guillaume Ayoub 2012-02-20 16:32:32 +01:00
parent f9d041ba6b
commit d256a0551c

View File

@ -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))