[CalendarServer-changes] [579] CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/ resource.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Nov 22 19:57:14 PST 2006


Revision: 579
          http://trac.macosforge.org/projects/calendarserver/changeset/579
Author:   cdaboo at apple.com
Date:     2006-11-22 19:57:13 -0800 (Wed, 22 Nov 2006)

Log Message:
-----------
There's an exception when calling super.__init__, but there is no __init__ in any super class. Not
sure what's up, but I commented out the super.__init__ call.

Modified Paths:
--------------
    CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/resource.py

Modified: CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/resource.py
===================================================================
--- CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/resource.py	2006-11-23 03:55:52 UTC (rev 578)
+++ CalendarServer/branches/users/wsanchez/provisioning-2/twistedcaldav/resource.py	2006-11-23 03:57:13 UTC (rev 579)
@@ -548,7 +548,8 @@
     def __init__(self, url):
         assert url.endswith("/"), "Collection URL must end in '/'"
 
-        super(CalendarPrincipalCollectionResource, self).__init__()
+        # FIXME: there is no super implementation of __init__
+        #super(CalendarPrincipalCollectionResource, self).__init__()
 
         self._url = url
 

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


More information about the calendarserver-changes mailing list