checksum: use FIXME instead of FIX ME when adding versions (#40050)

The former is highlighted by editors, while the latter is not.
pull/39045/merge
Michael Kuhn 2023-09-18 17:31:11 +02:00 committed by GitHub
parent 68d7ce3bb6
commit be3f7b5da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ def add_versions_to_package(pkg: PackageBase, version_lines: str):
parsed_version = Version(contents_version.group(1))
if parsed_version < new_versions[0][0]:
split_contents[i:i] = [new_versions.pop(0)[1], " # FIX ME", "\n"]
split_contents[i:i] = [new_versions.pop(0)[1], " # FIXME", "\n"]
num_versions_added += 1
elif parsed_version == new_versions[0][0]: