3 # Copyright (C) 2000-2015 Kern Sibbald
4 # License: BSD 2-Clause; see file LICENSE-FOSS
6 from time import time as now
9 fn = open('time.out', 'r')
14 m = int((diff - h * 3600) / 60)
15 sec = diff - h * 3600 - m * 60
16 print 'Total time = %d:%02d:%02d or %d secs' % (h, m, sec, t - float(s))