-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
Milestone
Description
I'm trying to compose a REPLY and it looks like SEQUENCE is required. It looks like ics.Event() doesn't support this field?
c = ics.Calendar()
c.method = "REPLY"
e = ics.Event()
e.uid = "original_id"
e.sequence = 1
c.events.append(response_event)
print(c)BEGIN:VCALENDAR
PRODID:ics.py - http://git.io/lLljaA
VERSION:2.0
METHOD:REPLY
BEGIN:VEVENT
DTSTAMP:20180306T170833Z
UID:1
END:VEVENT
END:VCALENDAR
Reactions are currently unavailable