[CalendarServer-changes] [5446] CalendarServer/trunk/twistedcaldav

source_changes at macosforge.org source_changes at macosforge.org
Wed Apr 7 18:33:36 PDT 2010


Revision: 5446
          http://trac.macosforge.org/projects/calendarserver/changeset/5446
Author:   sagen at apple.com
Date:     2010-04-07 18:33:35 -0700 (Wed, 07 Apr 2010)
Log Message:
-----------
resourceNamesforUID( ) needs to return str

Modified Paths:
--------------
    CalendarServer/trunk/twistedcaldav/index.py
    CalendarServer/trunk/twistedcaldav/vcardindex.py

Modified: CalendarServer/trunk/twistedcaldav/index.py
===================================================================
--- CalendarServer/trunk/twistedcaldav/index.py	2010-04-08 01:32:55 UTC (rev 5445)
+++ CalendarServer/trunk/twistedcaldav/index.py	2010-04-08 01:33:35 UTC (rev 5446)
@@ -186,7 +186,7 @@
                 self._delete_from_db(name, uid, None)
                 self._db_commit()
             else:
-                resources.append(name)
+                resources.append(name_utf8)
 
         return resources
 

Modified: CalendarServer/trunk/twistedcaldav/vcardindex.py
===================================================================
--- CalendarServer/trunk/twistedcaldav/vcardindex.py	2010-04-08 01:32:55 UTC (rev 5445)
+++ CalendarServer/trunk/twistedcaldav/vcardindex.py	2010-04-08 01:33:35 UTC (rev 5446)
@@ -299,7 +299,7 @@
                 self._delete_from_db(name, uid)
                 self._db_commit()
             else:
-                resources.append(name)
+                resources.append(name_utf8)
 
         return resources
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100407/53f5797b/attachment.html>


More information about the calendarserver-changes mailing list