[CalendarServer-changes] [15426] CalendarServer/trunk

source_changes at macosforge.org source_changes at macosforge.org
Thu Jan 7 10:53:07 PST 2016


Revision: 15426
          http://trac.calendarserver.org//changeset/15426
Author:   cdaboo at apple.com
Date:     2016-01-07 10:53:06 -0800 (Thu, 07 Jan 2016)
Log Message:
-----------
Make sure a new override triggers auto-scheduling.

Modified Paths:
--------------
    CalendarServer/trunk/requirements-dev.txt
    CalendarServer/trunk/txdav/caldav/datastore/scheduling/implicit.py

Modified: CalendarServer/trunk/requirements-dev.txt
===================================================================
--- CalendarServer/trunk/requirements-dev.txt	2016-01-07 18:52:28 UTC (rev 15425)
+++ CalendarServer/trunk/requirements-dev.txt	2016-01-07 18:53:06 UTC (rev 15426)
@@ -4,5 +4,5 @@
 mockldap
 q
 tl.eggdeps
---editable svn+http://svn.calendarserver.org/repository/calendarserver/CalDAVClientLibrary/trunk@15423#egg=CalDAVClientLibrary
+--editable svn+http://svn.calendarserver.org/repository/calendarserver/CalDAVClientLibrary/trunk@15425#egg=CalDAVClientLibrary
 --editable svn+http://svn.calendarserver.org/repository/calendarserver/CalDAVTester/trunk@15423#egg=CalDAVTester

Modified: CalendarServer/trunk/txdav/caldav/datastore/scheduling/implicit.py
===================================================================
--- CalendarServer/trunk/txdav/caldav/datastore/scheduling/implicit.py	2016-01-07 18:52:28 UTC (rev 15425)
+++ CalendarServer/trunk/txdav/caldav/datastore/scheduling/implicit.py	2016-01-07 18:53:06 UTC (rev 15426)
@@ -859,7 +859,7 @@
             for rid, props in diffs.iteritems():
 
                 # Ignore this case - it should only happen when there is no master component
-                if not props:
+                if props is None:
                     continue
 
                 # Ignore sequence only changes
@@ -876,7 +876,7 @@
                     "DURATION",
                     "DUE",
                     "RECURRENCE-ID",
-                )]):
+                )]) or len(props) == 0:
                     date_changed_rids.add(rid)
 
                 # Check to see whether a change to R-ID's happened
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20160107/07c95a01/attachment.html>


More information about the calendarserver-changes mailing list