mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Renamed variable
This commit is contained in:
parent
b2fc8bbb0c
commit
3882cf2bc8
1 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ class ApplicationDeleteMixin:
|
||||||
return httputils.PRECONDITION_FAILED
|
return httputils.PRECONDITION_FAILED
|
||||||
if isinstance(item, storage.BaseCollection):
|
if isinstance(item, storage.BaseCollection):
|
||||||
xml_answer = xml_delete(base_prefix, path, item)
|
xml_answer = xml_delete(base_prefix, path, item)
|
||||||
for item in item.get_all():
|
for i in item.get_all():
|
||||||
hook_notification_item = HookNotificationItem(
|
hook_notification_item = HookNotificationItem(
|
||||||
HookNotificationItemTypes.DELETE, item.uid)
|
HookNotificationItemTypes.DELETE, i.uid)
|
||||||
self._hook.notify(hook_notification_item)
|
self._hook.notify(hook_notification_item)
|
||||||
else:
|
else:
|
||||||
xml_answer = xml_delete(
|
xml_answer = xml_delete(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue