From d4a5ea7959a79d1eae6bc6a3406c6df681c507ff Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Mon, 30 Sep 2019 12:37:28 +0200 Subject: [PATCH] try to fix boolean --- infomentor/informer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infomentor/informer.py b/infomentor/informer.py index 133a67c..24fcab6 100755 --- a/infomentor/informer.py +++ b/infomentor/informer.py @@ -262,7 +262,7 @@ class Informer(object): attendee.params['ROLE'] = vText('REQ-PARTICIPANT') attendee.params['CUTYPE'] = vText('REQ-INDIVIDUAL') attendee.params['PARTSTAT'] = vText('ACCEPTED') - attendee.params['RSVP'] = vBoolean(False) + attendee.params['RSVP'] = vBoolean(0) event.add('attendee', attendee, encode=0) event.add("organizer", 'MAILTO:infomentor@09a.de')