i'm uses this
ThreadList.append([''.join(map(str,[Thread])), date, rrf[5]])
SendThreadList = ''
ThreadList = sorted(ThreadList, key=lambda Entry: Entry[1], reverse=True)
ThreadList = sorted(ThreadList, key=lambda Entry: Entry[2], reverse=True)
sorted show only the second sorted, how to do sorted with two entrys in key ??
''.join(map(str,[Thread]))? Applyingmap, I get''.join([str(Thread)])which of course is juststr(Thread)