From 75ec146224b6c9529b7e6fac1e7a0ee3b7929a18 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 17 Aug 2011 21:17:02 +0000 Subject: [PATCH] minor beautification --- lib/request/connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request/connect.py b/lib/request/connect.py index af1e719c0..f26be8c23 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -587,7 +587,7 @@ class Connect: kb.adjustTimeDelay = False warnMsg = "there is considerable lagging (standard deviation: " - warnMsg += "%f sec%s) " % (deviation, "s" if deviation > 1 else "") + warnMsg += "%.1f sec%s) " % (deviation, "s" if deviation > 1 else "") warnMsg += "in connection response(s). Please use as high " warnMsg += "value for --time-sec option as possible (e.g. " warnMsg += "%d or more)" % (conf.timeSec * 2)