From 6577c01d674da0ee41caa13ed56d99aec0d26e04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= Date: Sun, 7 Jul 2024 00:01:46 +0000 Subject: [PATCH] Re-add accidentally removed space in token request. --- full_offline_backup_for_todoist/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full_offline_backup_for_todoist/frontend.py b/full_offline_backup_for_todoist/frontend.py index aa7ce41..61b4793 100644 --- a/full_offline_backup_for_todoist/frontend.py +++ b/full_offline_backup_for_todoist/frontend.py @@ -91,7 +91,7 @@ def get_credential(opt_file: Optional[str], opt_direct: Optional[str], if deprecated_env in environment: print(f"WARNING: The {deprecated_env} environment variable is no longer necessary") - token = get_credential(args.token_file, args.token, "TODOIST_TOKEN", "Todoist token" + + token = get_credential(args.token_file, args.token, "TODOIST_TOKEN", "Todoist token " + "(from https://todoist.com/app/settings/integrations/developer)") return TodoistAuth(token)