From 53cb913ab689865e9b70c27aaeb55c3f937b227d Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 7 Jun 2026 21:37:16 -0400 Subject: [PATCH] Internals: Fix lint-py warning --- nodist/log_changes | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodist/log_changes b/nodist/log_changes index e56bef01c..c4632e355 100755 --- a/nodist/log_changes +++ b/nodist/log_changes @@ -97,10 +97,10 @@ def process() -> None: line, flags=re.IGNORECASE) if m: - mid = m.group(2) - if ("#" + mid) not in msgs[key]: + bug_id = m.group(2) + if ("#" + bug_id) not in msgs[key]: # print("K %s" % line) - msgs[key] += ' (#' + mid + ')' + msgs[key] += ' (#' + bug_id + ')' if not msgs: print("No Changes need to be inserted.")