Browse Source

Merge pull request #288 from l1am9111/tag_typo

Fix typo which results in error
Guillaume Ayoub 10 years ago
parent
commit
519a40d714
1 changed files with 1 additions and 1 deletions
  1. 1 1
      radicale/xmlutils.py

+ 1 - 1
radicale/xmlutils.py

@@ -575,7 +575,7 @@ def _item_response(href, found_props=(), not_found_props=(), found_item=True):
             propstat = ET.Element(_tag("D", "propstat"))
             status = ET.Element(_tag("D", "status"))
             status.text = _response(404)
-            prop = ET.Element(_Tag("D", "prop"))
+            prop = ET.Element(_tag("D", "prop"))
             for p in not_found_props:
                 prop.append(p)
             propstat.append(prop)