convert node count to string before building session message (fixes bug #258)

patch from Björn Axelsson
(Boeing r1900)
This commit is contained in:
ahrenholz 2014-10-31 18:35:38 +00:00
parent e319873815
commit 90f3c6569f

View file

@ -1471,7 +1471,7 @@ class CoreServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer):
nc = session.node_count nc = session.node_count
if nc is None: if nc is None:
nc = "" nc = ""
nclist.append(nc) nclist.append(str(nc))
datelist.append(time.ctime(session._time)) datelist.append(time.ctime(session._time))
thumb = session.thumbnail thumb = session.thumbnail
if thumb is None: if thumb is None: