Guillaume Ayoub 12 years ago
parent
commit
066dffd614
1 changed files with 2 additions and 2 deletions
  1. 2 2
      radicale/__init__.py

+ 2 - 2
radicale/__init__.py

@@ -282,8 +282,8 @@ class Application(object):
         is_valid_user = is_authenticated or not user
         is_valid_user = is_authenticated or not user
 
 
         if is_valid_user:
         if is_valid_user:
-            items = ical.Collection.from_path(path,
-                                              environ.get("HTTP_DEPTH", "0"))
+            items = ical.Collection.from_path(
+                path, environ.get("HTTP_DEPTH", "0"))
             read_allowed_items, write_allowed_items = \
             read_allowed_items, write_allowed_items = \
                 self.collect_allowed_items(items, user)
                 self.collect_allowed_items(items, user)
         else:
         else: