1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-07 18:30:54 +00:00

Refactoring

This commit is contained in:
Tuna Celik 2020-08-17 02:36:22 +02:00
parent 2e93c012bf
commit b2a0067a57
2 changed files with 8 additions and 8 deletions

View file

@ -66,14 +66,14 @@ class ApplicationDeleteMixin:
if isinstance(item, storage.BaseCollection):
xml_answer = xml_delete(base_prefix, path, item)
for item in item.get_all():
hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.DELETE, item.uid)
hook_notification_item = HookNotificationItem(
HookNotificationItemTypes.DELETE, item.uid)
self._hook.notify(hook_notification_item)
else:
xml_answer = xml_delete(
base_prefix, path, item.collection, item.href)
hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.DELETE, item.uid)
hook_notification_item = HookNotificationItem(
HookNotificationItemTypes.DELETE, item.uid)
self._hook.notify(hook_notification_item)
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
return client.OK, headers, self._write_xml_content(xml_answer)