Fix get requests for whole calendar

This commit is contained in:
Guillaume Ayoub 2010-12-20 15:49:48 +01:00
parent 72f3af9ab9
commit 091d89889d
2 changed files with 5 additions and 2 deletions

View file

@ -52,7 +52,8 @@ def _response(code):
def name_from_path(path):
"""Return Radicale item name from ``path``."""
return path.split("/")[-1]
path_parts = path.strip("/").split("/")
return path_parts[-1] if len(path_parts) > 2 else None
def delete(path, calendar):