summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorStanislaw Pitucha <stanislaw.pitucha@hp.com>2013-08-28 16:24:40 +0100
committerStanislaw Pitucha <stanislaw.pitucha@hp.com>2013-08-28 16:26:28 +0100
commita47d3d64685d5f584711707854fd0f522616bc3e (patch)
treef22e1f3eb53f7a55752904e8feb3183d3a5003ce /bin
parent6c041058da3c7263d79a6904560bf39cfadbaec1 (diff)
downloadpython-swiftclient-a47d3d64685d5f584711707854fd0f522616bc3e.tar.gz
Remove redundant unit suffix
Transfer speed already has a "MB/s" unit. The "s" suffix was probably a copy/paste mistake. Change-Id: Iccd7894d5ca11aac8a9f98365834c5d3deef0720
Diffstat (limited to 'bin')
-rwxr-xr-xbin/swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/swift b/bin/swift
index 5398598..6cfd9ea 100755
--- a/bin/swift
+++ b/bin/swift
@@ -374,7 +374,7 @@ def st_download(parser, args, thread_manager):
utime(path, (mtime, mtime))
if options.verbose:
finish_time = time()
- time_str = 'headers %.3fs, total %.3fs, %.3fs MB/s' % (
+ time_str = 'headers %.3fs, total %.3fs, %.3f MB/s' % (
header_receipt - start_time, finish_time - start_time,
float(read_length) / (finish_time - start_time) / 1000000)
if conn.attempts > 1: