1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-06 20:10:56 +00:00

Minor typo fixes

This commit is contained in:
Guillaume Ayoub 2011-06-16 10:40:30 +02:00
parent 1d67706b56
commit 21d435b560
2 changed files with 3 additions and 3 deletions

View file

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