From 5de541bab7a29ae6f2befaf33d545cd3c15b8e15 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 1 Mar 2014 22:37:46 +0100 Subject: [PATCH] Fix up old identifier --- vdirsyncer/storage/dav/caldav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdirsyncer/storage/dav/caldav.py b/vdirsyncer/storage/dav/caldav.py index 0a910e5..b3f9259 100644 --- a/vdirsyncer/storage/dav/caldav.py +++ b/vdirsyncer/storage/dav/caldav.py @@ -197,7 +197,7 @@ class CaldavStorage(Storage): rv.append((href, Item(obj), etag)) hrefs_left.remove(href) for href in hrefs_left: - raise exceptions.NotFound(href) + raise exceptions.NotFoundError(href) return rv def get(self, href):