Calculate entire daily task time

This commit is contained in:
Tanner Collin 2020-02-10 08:02:10 +00:00
parent 49f6da8ae5
commit 5ffb6c034a

View File

@ -18,9 +18,13 @@ class Command(BaseCommand):
def handle(self, *args, **options): def handle(self, *args, **options):
start = time.time() start = time.time()
count = self.tally_active_members() count = self.tally_active_members()
self.stdout.write('Tallied {} active members in {} s'.format( self.stdout.write('Tallied {} active members'.format(count))
count, str(time.time() - start)
))
utils_stats.changed_card() utils_stats.changed_card()
self.stdout.write('Updated card change time')
self.stdout.write('Completed tasks in {} s'.format(
str(time.time() - start)
))