From af285e5db9134262e16c81ea9b8548e67ba04e66 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 25 Apr 2011 13:33:48 +0200 Subject: [PATCH] Revert changes in xmlutils --- radicale/xmlutils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/radicale/xmlutils.py b/radicale/xmlutils.py index fe9ed33..ed73c17 100644 --- a/radicale/xmlutils.py +++ b/radicale/xmlutils.py @@ -29,7 +29,7 @@ in them for XML requests (all but PUT). import xml.etree.ElementTree as ET -from radicale import client, config, ical, log +from radicale import client, config, ical NAMESPACES = { @@ -83,11 +83,11 @@ def propfind(path, xml_request, calendar, depth): """Read and answer PROPFIND requests. Read rfc4918-9.1 for info. - + """ # Reading request root = ET.fromstring(xml_request) - + prop_element = root.find(_tag("D", "prop")) prop_list = prop_element.getchildren() props = [prop.tag for prop in prop_list]