summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2021-10-18 23:24:33 +0000
committerTobias Brox <tobias@redpill-linpro.com>2021-10-18 23:29:24 +0000
commite80d5eab364bbe3827b1fd7a4720ad208cb7c73b (patch)
tree321c258d546caa18f60ef450761505e9b64ea8b1
parent10578e19e65dd3bbc2134535df201ca8a21b4db2 (diff)
downloadcalendar-cli-e80d5eab364bbe3827b1fd7a4720ad208cb7c73b.zip
found some old modifications that were never committed
-rwxr-xr-xcalendar-cli.py1
-rw-r--r--setup.py2
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])
diff --git a/setup.py b/setup.py
index 34b388f..55002c1 100644
--- a/setup.py
+++ b/setup.py
@@ -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'