summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIzhar Firdaus <kagesenshi.87@gmail.com>2008-12-25 16:35:48 +0800
committerIzhar Firdaus <kagesenshi.87@gmail.com>2008-12-25 16:35:48 +0800
commit8daaff84c4c820a624da602200c5e7495594de7b (patch)
tree934225161a3ad2d2cb5c5767c639d43219ce0f84
parenta4039b7d6a9958637b66b0f77ec276cd024711fd (diff)
downloadhack-patches-8daaff84c4c820a624da602200c5e7495594de7b.tar.gz
hack-patches-8daaff84c4c820a624da602200c5e7495594de7b.tar.xz
hack-patches-8daaff84c4c820a624da602200c5e7495594de7b.zip
- KBps is misleading
-rw-r--r--fastestmirror-repomd-download-speed-timing.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastestmirror-repomd-download-speed-timing.patch b/fastestmirror-repomd-download-speed-timing.patch
index 8851ca9..3768fe2 100644
--- a/fastestmirror-repomd-download-speed-timing.patch
+++ b/fastestmirror-repomd-download-speed-timing.patch
@@ -31,7 +31,7 @@
+ elapsed = time.time() - time_before
+ result = (elapsed*10000) / fsize
+ if verbose:
-+ print "Timed %s %.1fKBps" % (self.host,fsize/elapsed/1024.0)
++ print "Timed %s (score: %.1f)" % (self.host,fsize/elapsed/1024.0)
+
self.parent._add_result(self.mirror, self.host, result)
except: