1
0

python3: remove calls to unicode function

This commit is contained in:
ThomasV
2017-08-08 11:12:44 +02:00
parent 033a5c6c91
commit 15642ec8de
5 changed files with 7 additions and 16 deletions

View File

@@ -114,7 +114,7 @@ class WsClientThread(util.DaemonThread):
for ws, amount in l:
if not ws.closed:
if sum(result.values()) >=amount:
ws.sendMessage(unicode('paid'))
ws.sendMessage('paid')