From 789f4ab01acc190c95532cf3b1411ff91c63b745 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 10 Feb 2013 09:32:34 +0530 Subject: [PATCH] ... --- src/calibre/gui2/store/loader.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/loader.py b/src/calibre/gui2/store/loader.py index 45c258a915..e4641da604 100644 --- a/src/calibre/gui2/store/loader.py +++ b/src/calibre/gui2/store/loader.py @@ -188,10 +188,12 @@ class Stores(OrderedDict): if __name__ == '__main__': st = time.time() + count = 0 for name, code in download_updates(): + count += 1 print(name) print(code) print('\n', '_'*80, '\n', sep='') - print ('Time to download all plugins: %.2f'%( time.time() - st)) + print ('Time to download all %d plugins: %.2f'%(count, time.time() - st))