summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2016-05-04 11:02:18 +0200
committerTobias Brox <tobias@redpill-linpro.com>2016-05-04 11:02:18 +0200
commit5d6a0cc931e72cff1ee310e25abd7edb35d99724 (patch)
treedd2f636af3e59f143d1147928c310ee381de2a5b
parent334f32a4cd01e6a5e461fdf4414028be1a2a2390 (diff)
downloadcalendar-cli-5d6a0cc931e72cff1ee310e25abd7edb35d99724.zip
oups - left a debugging hook in the code
-rwxr-xr-xcalendar-cli.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/calendar-cli.py b/calendar-cli.py
index 6e8fdeb..6f2bf50 100755
--- a/calendar-cli.py
+++ b/calendar-cli.py
@@ -596,7 +596,6 @@ def todo_list(caldav_conn, args):
t['uid'] = task.instance.vtodo.uid.value
## TODO: this will probably break and is probably moot on python3?
if hasattr(t['summary'], 'encode') and isinstance(t['summary'], unicode):
- import pdb; pdb.set_trace()
t['summary'] = t['summary'].encode('utf-8')
print(args.todo_template.format(**t))