mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-28 19:40:54 +00:00
fix missing return value
This commit is contained in:
parent
e02a31af89
commit
59bd8e8330
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class CollectionPartGet(CollectionPartCache, CollectionPartLock,
|
|||
except Exception as e:
|
||||
if self._skip_broken_item:
|
||||
logger.warning("Skip broken item %r in %r: %s", href, self.path, e)
|
||||
return
|
||||
return None
|
||||
else:
|
||||
raise RuntimeError("Failed to load item %r in %r: %s" %
|
||||
(href, self.path, e)) from e
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue