Internals: Fix lint-py warning

This commit is contained in:
Wilson Snyder 2026-06-07 21:37:16 -04:00
parent 2db34818b3
commit 53cb913ab6
1 changed files with 3 additions and 3 deletions

View File

@ -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.")