actually fix SQL error, add status bar message.
This commit is contained in:
parent
06ca8625f5
commit
f264c22ffb
|
@ -61,7 +61,7 @@ def isAddressInMyAddressBook(address):
|
||||||
|
|
||||||
#At this point we should really just have a isAddressInMy(book, address)...
|
#At this point we should really just have a isAddressInMy(book, address)...
|
||||||
def isAddressInMySubscriptionsList(address):
|
def isAddressInMySubscriptionsList(address):
|
||||||
t = (address,)
|
t = (str(address),) # As opposed to Qt str
|
||||||
sqlLock.acquire()
|
sqlLock.acquire()
|
||||||
sqlSubmitQueue.put('''select * from subscriptions where address=?''')
|
sqlSubmitQueue.put('''select * from subscriptions where address=?''')
|
||||||
sqlSubmitQueue.put(t)
|
sqlSubmitQueue.put(t)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user