From 26215dbdbc8f0493d7e310c1b1c4cb12428938e5 Mon Sep 17 00:00:00 2001 From: Georgiy Date: Wed, 2 Jul 2025 23:34:08 +0300 Subject: [PATCH] (#1812) Fix typos --- radicale/app/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/app/report.py b/radicale/app/report.py index 1df045d0..38d8d719 100644 --- a/radicale/app/report.py +++ b/radicale/app/report.py @@ -366,7 +366,7 @@ def _expand( if hasattr(vevent_recurrence, 'exdate'): exdates = vevent_recurrence.exdate.value if not isinstance(exdates, list): - exdates = [exdates] # Convert single date to list + exdates = [exdates] logger.debug("EXDATE values: %s", exdates) latest_exdate = max(exdates) if exdates else None if latest_exdate and end > latest_exdate: @@ -451,7 +451,7 @@ def _expand( if all_day_event: dtend = dtend.date() except ValueError as e: - logger.warning("Invalid DTSTART format: %s, error: %s", dtstart, e) + logger.warning("Invalid DTEND format: %s, error: %s", dtend, e) continue # Convert to datetime for comparison