From bc1eb8d72fc4d3285af80cc6511112e40258a1b6 Mon Sep 17 00:00:00 2001 From: Leonardo Date: Sat, 17 Apr 2010 15:12:13 +0200 Subject: [PATCH] Sono un pirla. (ho invertito true con false) --- phcstats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phcstats.py b/phcstats.py index 1d87ecc..9a580ca 100755 --- a/phcstats.py +++ b/phcstats.py @@ -96,9 +96,9 @@ def PrintStats(client): uptime = 100.0 * ss if IsAlive(client): - is_online = "no" - else: is_online = "yes" + else: + is_online = "no" print "Client: %s" % client print "IsOnline: %s" % is_online print "Uptime: %3.2f %% " % uptime -- 2.1.4