Truncate task run times
This commit is contained in:
parent
add5ccf6b4
commit
fe758271f2
|
@ -28,5 +28,5 @@ class Command(BaseCommand):
|
||||||
self.stdout.write('Updated card change time')
|
self.stdout.write('Updated card change time')
|
||||||
|
|
||||||
self.stdout.write('Completed tasks in {} s'.format(
|
self.stdout.write('Completed tasks in {} s'.format(
|
||||||
str(time.time() - start)
|
str(time.time() - start)[:4]
|
||||||
))
|
))
|
||||||
|
|
|
@ -20,5 +20,5 @@ class Command(BaseCommand):
|
||||||
self.stdout.write('Generated stats')
|
self.stdout.write('Generated stats')
|
||||||
|
|
||||||
self.stdout.write('Completed tasks in {} s'.format(
|
self.stdout.write('Completed tasks in {} s'.format(
|
||||||
str(time.time() - start)
|
str(time.time() - start)[:4]
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user