diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2021-10-18 23:24:33 +0000 |
---|---|---|
committer | Tobias Brox <tobias@redpill-linpro.com> | 2021-10-18 23:29:24 +0000 |
commit | e80d5eab364bbe3827b1fd7a4720ad208cb7c73b (patch) | |
tree | 321c258d546caa18f60ef450761505e9b64ea8b1 | |
parent | 10578e19e65dd3bbc2134535df201ca8a21b4db2 (diff) | |
download | calendar-cli-e80d5eab364bbe3827b1fd7a4720ad208cb7c73b.zip |
found some old modifications that were never committed
-rwxr-xr-x | calendar-cli.py | 1 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/calendar-cli.py b/calendar-cli.py index ec5993f..3d1ca2e 100755 --- a/calendar-cli.py +++ b/calendar-cli.py @@ -546,7 +546,6 @@ def calendar_agenda(caldav_conn, args): event['summary'] = getattr(event['instance'], summary_attr).value break event['uid'] = event['instance'].uid.value if hasattr(event['instance'], 'uid') else '<no uid>' - ## TODO: this will probably break and is probably moot on python3? for attr in vcal_txt_one + ['summary']: if isinstance(event[attr], unicode): event[attr] = to_normal_str(event[attr]) @@ -31,7 +31,7 @@ setup( scripts=['calendar-cli.py', 'calendar-cli'], install_requires=[ 'icalendar', - 'caldav>=0.6.2', + 'caldav>=0.8.1', 'pytz', 'tzlocal', 'six' |