We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15a476e commit 709b348Copy full SHA for 709b348
ubuntu_lint/linters.py
@@ -121,7 +121,7 @@ def check_missing_pending_changelog_entry(context: Context):
121
ch = changelog.Changelog(lines, allow_empty_author=True)
122
changes_versions = set([str(v) for v in ch.get_versions()])
123
124
- if pending_versions > changes_versions:
+ if not pending_versions <= changes_versions:
125
# The versions listed in the changes file is not a superset
126
# of the pending versions according to Launchpad.
127
missing_versions = ",".join(pending_versions - changes_versions)
0 commit comments