summaryrefslogtreecommitdiff
path: root/calendar-cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'calendar-cli.py')
-rwxr-xr-xcalendar-cli.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar-cli.py b/calendar-cli.py
index b9e5aaf..36b5ec6 100755
--- a/calendar-cli.py
+++ b/calendar-cli.py
@@ -500,6 +500,8 @@ def calendar_agenda(caldav_conn, args):
if not dtstart.tzinfo:
dtstart = _tz(args).localize(dtstart)
events.append({'dtstart': dtstart, 'instance': event})
+ ## changed to use the "key"-parameter at 2019-09-18, as needed for python3.
+ ## this will probably cause regression on sufficiently old versions of python
events.sort(key=lambda a: a['dtstart'])
for event in events:
event['summary'] = "(no description)"