Always use exact match when looking for source packages by name

This commit is contained in:
Steve Langasek 2024-03-10 15:46:22 -07:00
parent 010af53d7c
commit 9e710a3d66

View File

@ -212,6 +212,7 @@ def main():
try:
sources = archive.getPublishedSources(
distro_series=distroseries,
exact_match=True,
pocket=pocket,
source_name=package,
status='Published')[0]
@ -386,6 +387,7 @@ def main():
try:
pkg = archive.getPublishedSources(
distro_series=distroseries,
exact_match=True,
pocket=pocket,
source_name=pkg,
status='Published')[0]