From 3471561a9fb339070eda44a26914347c69d458da Mon Sep 17 00:00:00 2001 From: William Oprandi Date: Mon, 16 Oct 2017 11:30:03 +0200 Subject: [PATCH] Fix typo --- radicale/storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/storage.py b/radicale/storage.py index 65510bd..04e87f5 100644 --- a/radicale/storage.py +++ b/radicale/storage.py @@ -138,7 +138,7 @@ def check_and_sanitize_item(vobject_item, is_collection=False, uid=None, if component_name is None or is_collection: component_name = component.name elif component_name != component.name: - raise ValueError("Muliple component types in object: %r, %r" % + raise ValueError("Multiple component types in object: %r, %r" % (component_name, component.name)) if component_name not in ("VTODO", "VEVENT", "VJOURNAL"): continue @@ -155,7 +155,7 @@ def check_and_sanitize_item(vobject_item, is_collection=False, uid=None, "object" % component_name) elif object_uid != component_uid: raise ValueError( - "Muliple %s components with different UIDs in object: " + "Multiple %s components with different UIDs in object: " "%r, %r" % (component_name, object_uid, component_uid)) # vobject interprets recurrence rules on demand try: