Merge pull request #1609 from pbiering/improve-1186

log content in case of multiple main components error
This commit is contained in:
Peter Bieringer 2024-10-29 07:24:12 +01:00 committed by GitHub
commit bf4f5834af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
# Changelog
* Enhancement: log content in case of multiple main components error
## 3.3.0
* Adjustment: option [auth] htpasswd_encryption change default from "md5" to "autodetect"

View file

@ -279,7 +279,7 @@ def visit_time_ranges(vobject_item: vobject.base.Component, child_name: str,
yield comp, True, []
else:
if main is not None:
raise ValueError("Multiple main components")
raise ValueError("Multiple main components. Got comp: {}".format(comp))
main = comp
if main is None and len(recurrences) == 1:
main = rec_main