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)