# HG changeset patch # User Paul Boddie # Date 1463087148 -7200 # Node ID 7e03dc656fc1d6678d7db040034805b9f9a31e43 # Parent 2fffc03fa3ef5c8e2459bccfa4d1085cde2c2910 Fixed the return value of update_freebusy_from_attendees: this causes notifications to be generated again for existing events in the person handler. diff -r 2fffc03fa3ef -r 7e03dc656fc1 imiptools/client.py --- a/imiptools/client.py Thu May 12 22:58:57 2016 +0200 +++ b/imiptools/client.py Thu May 12 23:05:48 2016 +0200 @@ -1194,7 +1194,7 @@ obj = self.get_stored_object_version() if not obj or not self.have_new_object(): - return + return False # Filter out unrecognised attendees. @@ -1203,6 +1203,8 @@ for attendee in attendees: self.update_freebusy_from_participant(attendee, False) + return True + def remove_freebusy_from_organiser(self, organiser): "For the current user, remove free/busy information from 'organiser'."