[CalendarServer-changes] [9213] CalendarServer/trunk/calendarserver/tools/calverify_diff.py

source_changes at macosforge.org source_changes at macosforge.org
Mon Apr 30 10:29:14 PDT 2012


Revision: 9213
          http://trac.macosforge.org/projects/calendarserver/changeset/9213
Author:   cdaboo at apple.com
Date:     2012-04-30 10:29:12 -0700 (Mon, 30 Apr 2012)
Log Message:
-----------
Sort results.

Modified Paths:
--------------
    CalendarServer/trunk/calendarserver/tools/calverify_diff.py

Modified: CalendarServer/trunk/calendarserver/tools/calverify_diff.py
===================================================================
--- CalendarServer/trunk/calendarserver/tools/calverify_diff.py	2012-04-27 20:07:56 UTC (rev 9212)
+++ CalendarServer/trunk/calendarserver/tools/calverify_diff.py	2012-04-30 17:29:12 UTC (rev 9213)
@@ -96,12 +96,12 @@
     
     d = s1 - s2
     print "\nIn first, not in second: (%d)" % (len(d),)
-    for i in d:
+    for i in sorted(d):
         print i
     
     d = s2 - s1
     print "\nIn second, not in first: (%d)" % (len(d),)
-    for i in d:
+    for i in sorted(d):
         print i
 
 def usage(error_msg=None):
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20120430/cb6c41c5/attachment.html>


More information about the calendarserver-changes mailing list