This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 868c2bbef3a9897e49cfe8598ecfde7b9563fdcd Author: Greg Stein <[email protected]> AuthorDate: Sun Jun 5 03:38:53 2022 -0500 nit: single quotes are fine here --- v3/steve/election.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/steve/election.py b/v3/steve/election.py index f5dc225..81eda0f 100644 --- a/v3/steve/election.py +++ b/v3/steve/election.py @@ -33,9 +33,9 @@ class Election: # Construct cursors for all operations. self.c_salt_issue = self.db.add_statement( - '''UPDATE ISSUES SET salt = ? WHERE _ROWID_ = ?''') + 'UPDATE ISSUES SET salt = ? WHERE _ROWID_ = ?') self.c_salt_record = self.db.add_statement( - '''UPDATE RECORD SET salt = ? WHERE _ROWID_ = ?''') + 'UPDATE RECORD SET salt = ? WHERE _ROWID_ = ?') self.c_open = self.db.add_statement( 'UPDATE METADATA SET salt = ?, opened_key = ?') self.c_close = self.db.add_statement(
