[CalendarServer-changes] [15090] CalendarServer/branches/release/CalendarServer-5.4-dev/ calendarserver/tools/calverify.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Sep 2 12:54:05 PDT 2015


Revision: 15090
          http://trac.calendarserver.org//changeset/15090
Author:   cdaboo at apple.com
Date:     2015-09-02 12:54:05 -0700 (Wed, 02 Sep 2015)
Log Message:
-----------
Fix bug with --summary.

Modified Paths:
--------------
    CalendarServer/branches/release/CalendarServer-5.4-dev/calendarserver/tools/calverify.py

Modified: CalendarServer/branches/release/CalendarServer-5.4-dev/calendarserver/tools/calverify.py
===================================================================
--- CalendarServer/branches/release/CalendarServer-5.4-dev/calendarserver/tools/calverify.py	2015-09-02 19:53:16 UTC (rev 15089)
+++ CalendarServer/branches/release/CalendarServer-5.4-dev/calendarserver/tools/calverify.py	2015-09-02 19:54:05 UTC (rev 15090)
@@ -2788,11 +2788,11 @@
             table.addHeader(("GUID", "Name", "RID", "UID",))
             missing = 0
             for item in sorted(self.uuid_details):
-                if not item.purged:
+                if not item.missing:
                     continue
                 uuid = item.uuid
                 rname = item.rname
-                for detail in item.purged:
+                for detail in item.missing:
                     table.addRow((
                         uuid,
                         rname,
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20150902/36791141/attachment.html>


More information about the calendarserver-changes mailing list