From c65238d3d25c0fe7be48a83fd12f662143000d07 Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Fri, 4 Jan 2013 17:26:27 -0500 Subject: [PATCH] various smaller changes --- bitmessagemain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitmessagemain.py b/bitmessagemain.py index 8feac795..486f1834 100644 --- a/bitmessagemain.py +++ b/bitmessagemain.py @@ -1046,7 +1046,7 @@ class receiveDataThread(QThread): print 'we have the public key. sending it.' #We have it. Let's send it. for row in queryreturn: - hash, timeLastRequested = row + hash, transmitdata, timeLastRequested = row if timeLastRequested < int(time.time())+604800: #if the last time anyone asked about this hash was this week, extend the time. t = (int(time.time())+604800,hash) sqlSubmitQueue.put('''UPDATE pubkeys set time=? WHERE hash=? ''')