diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2019-03-15 20:03:32 +0100 |
---|---|---|
committer | Tobias Brox <tobias@redpill-linpro.com> | 2019-03-15 20:04:21 +0100 |
commit | 73275c137c728b9ee9f451ccb4852f45a11785fb (patch) | |
tree | d7d71c7b03bf2a8c585fbf88013b7ef0eb9626bf | |
parent | 4731da08f418e21a35ca5d106dac556978841c82 (diff) | |
download | calendar-cli-73275c137c728b9ee9f451ccb4852f45a11785fb.zip |
Explicit expanding of agenda, ref https://github.com/tobixen/calendar-cli/issues/52
-rwxr-xr-x | calendar-cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar-cli.py b/calendar-cli.py index dad0ee4..b15843e 100755 --- a/calendar-cli.py +++ b/calendar-cli.py @@ -416,7 +416,7 @@ def calendar_agenda(caldav_conn, args): dtend = dtstart + timedelta(args.agenda_days) ## TODO: time zone - events_ = find_calendar(caldav_conn, args).date_search(dtstart, dtend) + events_ = find_calendar(caldav_conn, args).date_search(dtstart, dtend, expand=True) events = [] if args.icalendar: for ical in events_: |