瀏覽代碼

Clean the calendar-timezone proppatch setter

Guillaume Ayoub 14 年之前
父節點
當前提交
4893f94920
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      radicale/xmlutils.py

+ 3 - 5
radicale/xmlutils.py

@@ -374,11 +374,9 @@ def proppatch(path, xml_request, collection):
 
     with collection.props as collection_props:
         for short_name, value in props_to_set.items():
-            if short_name == 'C:calendar-timezone':
-                collection.replace('', value)
-                collection.write()
-            else:
-                collection_props[short_name] = value
+            if short_name.split(":")[-1] == "calendar-timezone":
+                collection.replace(None, value)
+            collection_props[short_name] = value
             _add_propstat_to(response, short_name, 200)
         for short_name in props_to_remove:
             try: