# HG changeset patch # User Paul Boddie # Date 1438862262 -7200 # Node ID 13a95199e8e3759a49c3c6889732c507550bdbec # Parent c46fb5cff8f12a04a2121f869ac9c01d5672fd97 Fixed the free/busy tool to use start and end points when initialising periods. diff -r c46fb5cff8f1 -r 13a95199e8e3 tools/make_freebusy.py --- a/tools/make_freebusy.py Thu Aug 06 01:16:37 2015 +0200 +++ b/tools/make_freebusy.py Thu Aug 06 13:57:42 2015 +0200 @@ -40,8 +40,8 @@ for p in obj.get_periods(tzid, window_end): if recurrenceid or not is_replaced(p, recurrenceids, tzid): fb.append(FreeBusyPeriod( - p.get_start(), - p.get_end(), + p.get_start_point(), + p.get_end_point(), obj.get_value("UID"), only_organiser and "ORG" or obj.get_value("TRANSP") or "OPAQUE", recurrenceid,