Truncate task run times

This commit is contained in:
Tanner Collin 2020-02-18 22:30:00 +00:00
parent add5ccf6b4
commit fe758271f2
2 changed files with 2 additions and 2 deletions

View File

@ -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]
)) ))

View File

@ -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]
)) ))