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
|
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:
|
||||||
|
|
Loading…
Reference in a new issue