[CalendarServer-changes] [685] CalendarServer/trunk/lib-patches/Twisted/twisted.web2.dav.resource. patch

source_changes at macosforge.org source_changes at macosforge.org
Tue Dec 5 09:26:42 PST 2006


Revision: 685
          http://trac.macosforge.org/projects/calendarserver/changeset/685
Author:   cdaboo at apple.com
Date:     2006-12-05 09:26:39 -0800 (Tue, 05 Dec 2006)

Log Message:
-----------
Fix bug with incorrect use of set().

Modified Paths:
--------------
    CalendarServer/trunk/lib-patches/Twisted/twisted.web2.dav.resource.patch

Modified: CalendarServer/trunk/lib-patches/Twisted/twisted.web2.dav.resource.patch
===================================================================
--- CalendarServer/trunk/lib-patches/Twisted/twisted.web2.dav.resource.patch	2006-12-05 16:56:10 UTC (rev 684)
+++ CalendarServer/trunk/lib-patches/Twisted/twisted.web2.dav.resource.patch	2006-12-05 17:26:39 UTC (rev 685)
@@ -137,7 +137,8 @@
 +
          for qname in self.deadProperties().list():
              if (qname not in qnames) and (qname[0] != twisted_private_namespace):
-                 qnames.append(qname)
+-                qnames.append(qname)
++                qnames.add(qname)
  
 -        return succeed(qnames)
 +        yield qnames

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20061205/f9f6138a/attachment.html


More information about the calendarserver-changes mailing list