fix syntax error

This commit is contained in:
ThomasV 2015-11-25 10:35:14 +01:00
parent 2934fd17be
commit 2a29d1e5e7
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class WsClientThread(util.DaemonThread):
elif method == 'blockchain.address.get_balance':
addr = params[0]
l = self.subscriptions.get(addr, [])
for ws, amount in :l:
for ws, amount in l:
if not ws.closed:
if sum(result.values()) >=amount:
ws.sendMessage(unicode('paid'))