From 27c8f731a3384094e47d8bc6192edf78977308b0 Mon Sep 17 00:00:00 2001 From: Gentile G Date: Tue, 26 Sep 2023 13:40:40 +0200 Subject: [PATCH] Removing new line at the end of log --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 03e4ee8..ad62cbf 100755 --- a/main.py +++ b/main.py @@ -117,7 +117,7 @@ if __name__ == "__main__": client.add_todo(task) - print('process finished for date {}: {} tasks created\n'.format(run_date, len(task_list))) + print('process finished for date {}: {} tasks created'.format(run_date, len(task_list))) run_date = run_date + datetime.timedelta(days=1) with open(last_run_file_path, 'w') as last_run_file: