Revision
9294
Author
glyph@apple.com
Date
2012-05-24 13:34:32 -0700 (Thu, 24 May 2012)

Log Message

use correct value

Modified Paths

Diff

Modified: CalendarServer/branches/users/glyph/uuid-normalize/txdav/caldav/datastore/util.py (9293 => 9294)


--- CalendarServer/branches/users/glyph/uuid-normalize/txdav/caldav/datastore/util.py	2012-05-24 20:34:30 UTC (rev 9293)
+++ CalendarServer/branches/users/glyph/uuid-normalize/txdav/caldav/datastore/util.py	2012-05-24 20:34:32 UTC (rev 9294)
@@ -500,7 +500,7 @@
             postval = normalizeUUIDOrNot(preval)
             if preval != postval:
                 fixes += 1
-                calprop.setValue(preval)
+                calprop.setValue(postval)
     for subc in component.subcomponents():
         count, fixsubc = fixOneCalendarObject(subc)
         fixes += count