Removing new line at the end of log

This commit is contained in:
2023-09-26 13:40:40 +02:00
parent 98b71218c4
commit 27c8f731a3

View File

@@ -117,7 +117,7 @@ if __name__ == "__main__":
client.add_todo(task) 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) run_date = run_date + datetime.timedelta(days=1)
with open(last_run_file_path, 'w') as last_run_file: with open(last_run_file_path, 'w') as last_run_file: