mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-03 10:25:51 +00:00
Stylefix
This commit is contained in:
parent
5568e4873e
commit
536d9400c6
1 changed files with 3 additions and 3 deletions
|
|
@ -211,11 +211,11 @@ class Discover(object):
|
|||
for response in root.findall('{DAV:}response'):
|
||||
props = _merge_xml(response.findall('{DAV:}propstat/{DAV:}prop'))
|
||||
if not props:
|
||||
logger.debug('Skipping, missing <prop>: %s', response)
|
||||
dav_logger.debug('Skipping, missing <prop>: %s', response)
|
||||
continue
|
||||
if props.find('{DAV:}resourcetype/' + self._resourcetype) is None:
|
||||
logger.debug('Skipping, not of resource type %s: %s',
|
||||
self._resourcetype, response)
|
||||
dav_logger.debug('Skipping, not of resource type %s: %s',
|
||||
self._resourcetype, response)
|
||||
continue
|
||||
|
||||
href = response.find('{DAV:}href')
|
||||
|
|
|
|||
Loading…
Reference in a new issue