From 24e5298a68f52c527f1a5c5fe2ff5be1ccf9cb35 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Thu, 1 Mar 2012 17:01:11 +1300 Subject: [PATCH] max and average were swapped in plugins/ping.py --- plugins/ping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ping.py b/plugins/ping.py index f5386ee..7237732 100644 --- a/plugins/ping.py +++ b/plugins/ping.py @@ -31,4 +31,4 @@ def ping(inp, reply=None): m = re.search(r"rtt min/avg/max/mdev = "\ "(\d+.\d+)/(\d+.\d+)/(\d+.\d+)/(\d+.\d+)", pingcmd) return "min: %sms, max: %sms, average: %sms, range: %sms, count: %s"\ - % (m.group(1), m.group(2), m.group(3), m.group(4), count) + % (m.group(1), m.group(3), m.group(2), m.group(4), count)