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 5d36bbcba60e3b7b5529a29ad9c84daccc57be14 Author: Greg Stein <[email protected]> AuthorDate: Sun Jun 5 17:13:09 2022 -0500 fix typo found via coverage testing --- v3/steve/election.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/steve/election.py b/v3/steve/election.py index 6cf13c3..32bd14c 100644 --- a/v3/steve/election.py +++ b/v3/steve/election.py @@ -207,7 +207,7 @@ class Election: def list_persons(self): "Return ordered (PID, NAME, EMAIL) for each Person." self.q_person.perform() - return [ row[:3] for row in self.q_prson.fetchall() ] + return [ row[:3] for row in self.q_person.fetchall() ] def add_vote(self, pid, iid, votestring): "Add VOTESTRING as the (latest) vote by PID for IID."
