mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-31 09:55:55 +00:00
add tls_fingerprint to storage.dav.DavStorage
This commit is contained in:
parent
c9cfd0f1ed
commit
0de3102c2c
1 changed files with 2 additions and 1 deletions
|
|
@ -270,7 +270,8 @@ class DavStorage(Storage):
|
|||
if kwargs.pop('collection', None) is not None:
|
||||
raise TypeError('collection argument must not be given.')
|
||||
discover_args, _ = utils.split_dict(kwargs, lambda key: key in (
|
||||
'username', 'password', 'verify', 'auth', 'useragent'
|
||||
'username', 'password', 'verify', 'auth', 'useragent',
|
||||
'tls_fingerprint',
|
||||
))
|
||||
d = cls.discovery_class(DavSession(
|
||||
url=url, dav_header=None, **discover_args))
|
||||
|
|
|
|||
Loading…
Reference in a new issue