imip-agent

Changeset

1137:4c428430dd19
2016-04-21 Paul Boddie raw files shortlog changelog graph Fixed removal of parent event periods in the database free/busy collection. freebusy-collections
imiptools/period.py (file)
     1.1 --- a/imiptools/period.py	Wed Apr 20 16:13:29 2016 +0200
     1.2 +++ b/imiptools/period.py	Thu Apr 21 00:56:14 2016 +0200
     1.3 @@ -929,7 +929,7 @@
     1.4          if recurrenceid:
     1.5              columns, values = ["object_uid", "object_recurrenceid"], [uid, recurrenceid]
     1.6          else:
     1.7 -            columns, values = ["object_uid"], [uid]
     1.8 +            columns, values = ["object_uid", "object_recurrenceid is null"], [uid]
     1.9  
    1.10          query, _values = self.get_query(
    1.11              "select %(columns)s from %(table)s :condition" % {