actually fix SQL error, add status bar message.

This commit is contained in:
nimda 2013-06-13 22:27:14 -04:00
parent 06ca8625f5
commit f264c22ffb
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def isAddressInMyAddressBook(address):
#At this point we should really just have a isAddressInMy(book, address)...
def isAddressInMySubscriptionsList(address):
t = (address,)
t = (str(address),) # As opposed to Qt str
sqlLock.acquire()
sqlSubmitQueue.put('''select * from subscriptions where address=?''')
sqlSubmitQueue.put(t)