Skip to content

Commit

Permalink
Started working on a kal vs calendar-cli project split, as suggested by
Browse files Browse the repository at this point in the history
@fauxmight .  Updates #88
  • Loading branch information
tobixen committed Jan 8, 2023
1 parent cc6cf29 commit 280ad89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ calendar-cli

Simple command-line CalDav client, making it possible to add calendar events, browse an agenda and doing task management towards a caldav server.

THIS IS THE LEGACY VERSION. I got a bit unhappy with the project (particularly the quite different user interfaces when handling events vs handling tasks), so rather than making version 1.0, I decided to recreate it from scratch. Please visit https://github.com/tobixen/kal for the new version (though be aware that it still has some sharp edges).

Other tools
-----------

Expand Down
3 changes: 1 addition & 2 deletions calendar_cli/cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ def check_due(ctx, limit, lookahead):
if input == 'ignore':
continue
elif input == 'split':
interactive_split_task(obj, ctx)
interactive_split_task(ctx, obj)
elif input.startswith('postpone'):
obj.set_due(parse_add_dur(due, input.split(' ')[1]), move_dtstart=True)
elif input == 'complete':
Expand Down Expand Up @@ -1010,7 +1010,6 @@ def interactive_split_task(ctx, obj):
default = f"Plan how to do {summary}"
while True:
summary = click.prompt("Name for the subtask", default=default)
import pdb; pdb.set_trace()
default=""
if not summary:
break
Expand Down

0 comments on commit 280ad89

Please sign in to comment.