diff --git a/radicale/storage/multifilesystem/meta.py b/radicale/storage/multifilesystem/meta.py index b95fb162..2dcb5de0 100644 --- a/radicale/storage/multifilesystem/meta.py +++ b/radicale/storage/multifilesystem/meta.py @@ -62,6 +62,9 @@ class CollectionPartMeta(CollectionBase): def set_meta(self, props: Mapping[str, str]) -> None: # TODO: better fix for "mypy" - with self._atomic_write(self._props_path, "w") as fo: # type: ignore - f = cast(TextIO, fo) - json.dump(props, f, sort_keys=True) + try: + with self._atomic_write(self._props_path, "w") as fo: # type: ignore + f = cast(TextIO, fo) + json.dump(props, f, sort_keys=True) + except OSError as e: + raise ValueError("Failed to write meta data %r %s" % (self._props_path, e)) from e