1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

Cosmetic changes

This commit is contained in:
Unrud 2020-01-19 18:13:05 +01:00
parent e07df9fd1d
commit 866aa34f54
7 changed files with 19 additions and 23 deletions

View file

@ -81,7 +81,7 @@ class BaseCollection:
"""Encoded as quoted-string (see RFC 2616)."""
etag = sha256()
for item in self.get_all():
etag.update((item.href + "/" + item.etag).encode("utf-8"))
etag.update((item.href + "/" + item.etag).encode())
etag.update(json.dumps(self.get_meta(), sort_keys=True).encode())
return '"%s"' % etag.hexdigest()