From 3bb71dc4f41d039c90c57207215ce837072afe57 Mon Sep 17 00:00:00 2001 From: "ahrenholz@gmail.com" 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 --- trunk/daemon/sbin/core-daemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/daemon/sbin/core-daemon b/trunk/daemon/sbin/core-daemon index af8adb44..66b40c30 100755 --- a/trunk/daemon/sbin/core-daemon +++ b/trunk/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: