From c95437367f949d24f48ea5aeef5568eacf9dea85 Mon Sep 17 00:00:00 2001 From: Florian Mounier Date: Fri, 12 Aug 2016 15:05:05 +0200 Subject: [PATCH] This is very important --- radicale/storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/storage.py b/radicale/storage.py index 51a14ff4..102bfc14 100644 --- a/radicale/storage.py +++ b/radicale/storage.py @@ -321,7 +321,7 @@ class BaseCollection: """Upload a new item.""" raise NotImplementedError - def upload_all(self, collections): + def upload_all(self, vobject_items): """Upload a new set of items. This takes a mapping of href and vobject items and @@ -331,7 +331,7 @@ class BaseCollection: """ return [ self.upload(href, vobject_item) - for href, vobject_item in collections.items() + for href, vobject_item in vobject_items.items() ] def update(self, href, vobject_item):