From 90f3c6569f0d35afd5bf4053b80b1a64bbdde2b4 Mon Sep 17 00:00:00 2001 From: ahrenholz Date: Fri, 31 Oct 2014 18:35:38 +0000 Subject: [PATCH] =?UTF-8?q?convert=20node=20count=20to=20string=20before?= =?UTF-8?q?=20building=20session=20message=20(fixes=20bug=20#258)=20patch?= =?UTF-8?q?=20from=20Bj=C3=B6rn=20Axelsson=20(Boeing=20r1900)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- daemon/sbin/core-daemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/sbin/core-daemon b/daemon/sbin/core-daemon index af8adb44..66b40c30 100755 --- a/daemon/sbin/core-daemon +++ b/daemon/sbin/core-daemon @@ -1471,7 +1471,7 @@ class CoreServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): nc = session.node_count if nc is None: nc = "" - nclist.append(nc) + nclist.append(str(nc)) datelist.append(time.ctime(session._time)) thumb = session.thumbnail if thumb is None: