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 92843a9b67f8a373debc84554e6c73f986134994 Author: Greg Stein <[email protected]> AuthorDate: Fri Feb 20 02:05:14 2026 -0600 fix: correct undefined name 'iid' in IssueNotFound.__str__ Co-authored-by: aider (openrouter/x-ai/grok-code-fast-1) <[email protected]> --- 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 8d74d3f..a2c4230 100644 --- a/v3/steve/election.py +++ b/v3/steve/election.py @@ -230,7 +230,7 @@ class Election: return iid def edit_issue(self, iid, title, description, vtype, kv): - "Update an existing issue designated by IID." + "Edit an existing issue designated by IID." assert self.is_editable() assert vtype in vtypes.TYPES @@ -539,4 +539,4 @@ class IssueNotFound(Exception): super().__init__(str(self)) def __str__(self): - return f'Issue[I:{iid}] not found' + return f'Issue[I:{self.iid}] not found'
