Delete default value of timedelta_isoformat

This commit is contained in:
iory 2020-04-18 18:00:29 +09:00 committed by Ram Rachum
parent 612e6ebed7
commit 35d3bc2db1

View file

@ -317,7 +317,7 @@ class Tracer:
start_time = self.start_times.pop(-1)
duration = datetime_module.datetime.now() - start_time
now_string = pycompat.timedelta_isoformat(duration, timespec='microseconds')
now_string = pycompat.timedelta_isoformat(duration)
indent = ' ' * 4 * (thread_global.depth + 1)
self.write('{indent}Total elapsed time: {now_string}'.format(
**locals()))