From 33d3dd3417ef99373c2cdfa1752ce34a86b208e3 Mon Sep 17 00:00:00 2001 From: Matt Snider Date: Mon, 25 Mar 2019 22:18:03 +0100 Subject: [PATCH] Fix typo in output at beginning of migration --- todoist_taskwarrior/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todoist_taskwarrior/cli.py b/todoist_taskwarrior/cli.py index b075463..ce5c160 100644 --- a/todoist_taskwarrior/cli.py +++ b/todoist_taskwarrior/cli.py @@ -90,7 +90,7 @@ def migrate(ctx, interactive, sync): ctx.invoke(synchronize) tasks = todoist.items.all() - io.important(f'Starting migration of {len(tasks)}...') + io.important(f'Starting migration of {len(tasks)} tasks...') for idx, task in enumerate(tasks): data = {} tid = data['tid'] = task['id']