Compare commits

...

1 Commits

Author SHA1 Message Date
27c8f731a3 Removing new line at the end of log 2023-09-26 13:40:40 +02:00

View File

@@ -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: