From a47345d51bda4522e72ab2897da11caa0e1058d4 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sat, 23 Nov 2013 21:54:52 +0100 Subject: [PATCH] rrd.py: clientCount -= 1 might not be needed with gluon/alfred --- rrd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rrd.py b/rrd.py index 896a4b7..8884e24 100755 --- a/rrd.py +++ b/rrd.py @@ -118,7 +118,7 @@ class rrd: if not node.flags['client']: nodes[node.id] = node node.clients = 0; - clientCount -= 1 + clientCount -= 1 # XXX: might not be needed with gluon/alfred else: clientCount += 1 for link in db.get_links():