summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--caldav/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/caldav/objects.py b/caldav/objects.py
index 390c5f8..42bda30 100644
--- a/caldav/objects.py
+++ b/caldav/objects.py
@@ -980,7 +980,7 @@ class Calendar(DAVObject):
except Exception as err:
if comp_filter is not None:
raise
- logging.warning(f"Error {str(err)} from server when doing an object_by_uid({uid}). search without compfilter set is not compatible with all server implementations, trying object_by_event + object_by_todo + object_by_journal instead")
+ logging.warning("Error %s from server when doing an object_by_uid(%s). search without compfilter set is not compatible with all server implementations, trying object_by_event + object_by_todo + object_by_journal instead" % (str(err), uid))
items_found = []
for compfilter in ("VTODO", "VEVENT", "VJOURNAL"):
try: