Skip to content

Commit

Permalink
Add missing count in process_not_done_time_entries command
Browse files Browse the repository at this point in the history
  • Loading branch information
thenav56 committed Aug 9, 2024
1 parent 657c5ab commit d0d4b73
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def clone_doing_entries(self, today: datetime.date):
time_entry.status = TimeEntry.Status.TODO # Use todo Status
time_entry.date = today
time_entry.save()
cloned_count += 1
self.stdout.write(self.style.SUCCESS(f"{cloned_count} DOING cloned"))

def handle(self, **_):
Expand Down

0 comments on commit d0d4b73

Please sign in to comment.