convert node count to string before building session message (fixes bug #258)
patch from Björn Axelsson (Boeing r1900)
This commit is contained in:
parent
e319873815
commit
90f3c6569f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue