def parse_type(key, values):
# integers
parser = vRecur.types.get(key, vText)
return [parser.from_ical(v) for v in values.split(', ')]
parse_type = staticmethod(parse_type)
Should be a ', ' instead of a ',' I'll submit a patch as well
Thanks for fix
Posted byAnonymous Userat
2007-12-18 06:14 AM
Thank you for posting this, since it does not yet appear to be added. I'm now stuck on an error when reading an iCal file with a line like:
RRULE:FREQ=MONTHLY;COUNT=4;INTERVAL=3;BYDAY=1 TU;WKST=SU
ie occurs on the first Tuesday of every third month for four instances.
def parse_type(key, values):
# integers
parser = vRecur.types.get(key, vText)
return [parser.from_ical(v) for v in values.split(', ')]
parse_type = staticmethod(parse_type)
Should be a ', ' instead of a ',' I'll submit a patch as well
RRULE:FREQ=MONTHLY;COUNT=4;INTERVAL=3;BYDAY=1 TU;WKST=SU
ie occurs on the first Tuesday of every third month for four instances.
Replies to this comment