Pass elements instead of tuple in ubuntuMessagingMenuClear sqlQuery. fixes #474

This commit is contained in:
Evgeny Tataurov 2013-09-04 14:20:32 +06:00
parent eff4edb8e8
commit 7c1e8b2821

View File

@ -860,7 +860,7 @@ class MyForm(QtGui.QMainWindow):
return
queryreturn = sqlQuery(
'''SELECT toaddress, read FROM inbox WHERE msgid=?''', inventoryHash)
'''SELECT toaddress, read FROM inbox WHERE msgid=?''', *inventoryHash)
for row in queryreturn:
toAddress, read = row
if not read: