diff --git a/radicale/storage.py b/radicale/storage.py index 0e0f180..3c3258a 100644 --- a/radicale/storage.py +++ b/radicale/storage.py @@ -284,8 +284,8 @@ class Item: try: self._item = vobject.readOne(self._text) except Exception as e: - raise RuntimeError("Failed to parse item %r in %r" % - (self.href, self.collection.path)) from e + raise RuntimeError("Failed to parse item %r in %r: %s" % + (self.href, self.collection.path, e)) from e return self._item @property