[CalendarServer-changes] [5068] CalendarServer/branches/users/glyph/contacts-server-merge/ twistedcaldav/static.py

source_changes at macosforge.org source_changes at macosforge.org
Mon Feb 8 17:33:07 PST 2010


Revision: 5068
          http://trac.macosforge.org/projects/calendarserver/changeset/5068
Author:   glyph at apple.com
Date:     2010-02-08 17:33:04 -0800 (Mon, 08 Feb 2010)
Log Message:
-----------
fix a NameError

Modified Paths:
--------------
    CalendarServer/branches/users/glyph/contacts-server-merge/twistedcaldav/static.py

Modified: CalendarServer/branches/users/glyph/contacts-server-merge/twistedcaldav/static.py
===================================================================
--- CalendarServer/branches/users/glyph/contacts-server-merge/twistedcaldav/static.py	2010-02-09 01:20:28 UTC (rev 5067)
+++ CalendarServer/branches/users/glyph/contacts-server-merge/twistedcaldav/static.py	2010-02-09 01:33:04 UTC (rev 5068)
@@ -1552,17 +1552,16 @@
             if e.errno != errno.EEXIST:
                 raise
 
-
-
     
     def getChild(self, name):
         
         if name is "":
             return self
         else:
-            return CalDAVFile(join(self.fp.path, name ), 
-                              principalCollections=self.principalCollections()
-                              )
+            return CalDAVFile(
+                self.fp,
+                principalCollections=self.principalCollections()
+            ).getChild(name)
        
  
 ##
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100208/6b4e1bf0/attachment.html>


More information about the calendarserver-changes mailing list