We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a1424c commit ced7b4dCopy full SHA for ced7b4d
src/bitmessageqt/blacklist.py
@@ -197,11 +197,11 @@ def on_action_BlacklistDelete(self):
197
if BMConfigParser().get('bitmessagesettings', 'blackwhitelist') == 'black':
198
sqlExecute(
199
'''DELETE FROM blacklist WHERE label=? AND address=?''',
200
- str(labelAtCurrentRow), str(addressAtCurrentRow))
+ labelAtCurrentRow, addressAtCurrentRow)
201
else:
202
203
'''DELETE FROM whitelist WHERE label=? AND address=?''',
204
205
self.tableWidgetBlacklist.removeRow(currentRow)
206
207
def on_action_BlacklistClipboard(self):
0 commit comments