Skip to content
Snippets Groups Projects
Unverified Commit 935021b1 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Avoid these tricky parens around the column list

Parens can create a tuple or something and we don't want that.
parent 5fe4b426
No related branches found
No related tags found
1 merge request!155Client-side two-phase spending protocol to reduce pass loss
......@@ -263,7 +263,7 @@ class VoucherStore(object):
cursor.execute("BEGIN IMMEDIATE TRANSACTION")
cursor.execute(
"""
SELECT ([text])
SELECT [text]
FROM [tokens]
WHERE [voucher] = ? AND [counter] = ?
""",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment