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 626fdf84ebccffa131ababb0fc3864e0bc614c31
Author: Greg Stein <[email protected]>
AuthorDate: Sun Sep 28 13:09:15 2025 -0500

    fix calls to use .perform()
---
 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 6508fc0..3b9bbe3 100644
--- a/v3/steve/election.py
+++ b/v3/steve/election.py
@@ -394,7 +394,7 @@ class Election:
         db = cls.open_database(db_fname)
 
         # Run the generator to get all rows. Returned as EasyDicts.
-        db.q_open_to_me(pid,)
+        db.q_open_to_me.perform(pid,)
         return [ row for row in db.q_open_to_me.fetchall() ]
 
     @classmethod
@@ -407,5 +407,5 @@ class Election:
         #       SALT or OPENED_KEY values.
         #
         # Run the generator to get all rows. Returned as EasyDicts.
-        db.q_owned(pid,)
+        db.q_owned.perform(pid,)
         return [ row for row in db.q_owned.fetchall() ]

Reply via email to