Calculate entire daily task time
This commit is contained in:
parent
49f6da8ae5
commit
5ffb6c034a
|
@ -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)
|
||||||
|
))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user