[CalendarServer-changes] [2348] CalendarServer/branches/users/wsanchez/logging/twistedcaldav/log.py

source_changes at macosforge.org source_changes at macosforge.org
Thu Apr 24 17:16:25 PDT 2008


Revision: 2348
          http://trac.macosforge.org/projects/calendarserver/changeset/2348
Author:   wsanchez at apple.com
Date:     2008-04-24 17:16:24 -0700 (Thu, 24 Apr 2008)

Log Message:
-----------
Don't inherit from both object and LoggingMixIn, because that causes Zope to barf.

Modified Paths:
--------------
    CalendarServer/branches/users/wsanchez/logging/twistedcaldav/log.py

Modified: CalendarServer/branches/users/wsanchez/logging/twistedcaldav/log.py
===================================================================
--- CalendarServer/branches/users/wsanchez/logging/twistedcaldav/log.py	2008-04-24 23:47:52 UTC (rev 2347)
+++ CalendarServer/branches/users/wsanchez/logging/twistedcaldav/log.py	2008-04-25 00:16:24 UTC (rev 2348)
@@ -28,9 +28,9 @@
 
     from twistedcaldav.log import LoggingMixIn
 
-    class Foo (object, LoggingMixIn):
+    class Foo (LoggingMixIn):
         def oops(self):
-            self.log_error("Oops!")
+            self.log_erroror("Oops!")
 """
 
 __all__ = [

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


More information about the calendarserver-changes mailing list