From 21d435b560b17ea312aa6665338b037d96f93ccf Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Thu, 16 Jun 2011 10:40:30 +0200 Subject: [PATCH] Minor typo fixes --- radicale/__init__.py | 4 ++-- radicale/ical.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/radicale/__init__.py b/radicale/__init__.py index 6bbdc5a1..42d0936a 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -166,8 +166,8 @@ class Application(object): content = None # Find calendar(s) - items = ical.Calendar.from_path(environ["PATH_INFO"], - environ.get("HTTP_DEPTH", "0")) + items = ical.Calendar.from_path( + environ["PATH_INFO"], environ.get("HTTP_DEPTH", "0")) # Get function corresponding to method function = getattr(self, environ["REQUEST_METHOD"].lower()) diff --git a/radicale/ical.py b/radicale/ical.py index 56a79bb1..393956d2 100644 --- a/radicale/ical.py +++ b/radicale/ical.py @@ -210,7 +210,7 @@ class Calendar(object): if cls.is_vcalendar(os.path.join(abs_path, filename)): result.append(cls(os.path.join(path, filename))) except StopIteration: - # directory does not exist yet + # Directory does not exist yet pass else: calendar = cls(path)