mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Loosen up assertions for owncloud a bit
This commit is contained in:
parent
a4557ef5cf
commit
8421739216
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ class DavStorage(Storage):
|
||||||
etag = response.headers.get('etag', None)
|
etag = response.headers.get('etag', None)
|
||||||
if not etag:
|
if not etag:
|
||||||
obj2, etag = self.get(href)
|
obj2, etag = self.get(href)
|
||||||
assert obj2.raw == obj.raw
|
assert obj2.uid == obj.uid
|
||||||
return href, etag
|
return href, etag
|
||||||
|
|
||||||
def update(self, href, obj, etag):
|
def update(self, href, obj, etag):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue