We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ce9466 commit 1c6beaeCopy full SHA for 1c6beae
vdirsyncer/storage/base.py
@@ -28,7 +28,7 @@ class StorageMeta(ABCMeta):
28
def __init__(cls, name, bases, d):
29
"""Wrap mutating methods to fail if the storage is readonly."""
30
31
- for method in ("update", "upload", "delete"):
+ for method in ("update", "upload", "delete", "set_meta"):
32
setattr(cls, method, mutating_storage_method(getattr(cls, method)))
33
return super().__init__(name, bases, d)
34
0 commit comments