mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-14 22:02:59 +02:00
...
This commit is contained in:
parent
209c423abc
commit
4c8e216f5f
1 changed files with 2 additions and 2 deletions
|
|
@ -1043,8 +1043,8 @@ def display_data(self, ok, data):
|
|||
' information.'), det_msg=data, show=True)
|
||||
data, timing = data
|
||||
try:
|
||||
for x, t in timing.iteritems():
|
||||
print ('Time for %s data: %.3f seconds' % (x, t))
|
||||
for x, t in sorted(timing.iteritems(), key=itemgetter(1)):
|
||||
print ('Time for %6s data: %.3f seconds' % (x, t))
|
||||
except Exception:
|
||||
pass
|
||||
self.reports(data)
|
||||
|
|
|
|||
Loading…
Reference in a new issue