Remove PDC mentions from comments as well

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
Michal Konecny 2024-10-01 11:35:13 +02:00
parent 26feb01535
commit d0ee330a5f
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
"""
This script queries PDC for all the packages in Fedora, it then go through
This script queries Bodhi and dist_git for all the packages in Fedora, it then go through
each of them and determines if they are inactive on all branches or not.
If they are, it will then query dist-git to retrieve all of its current
maintainers, if they do not have ``orphan`` as main user they will be orphaned

View file

@ -410,7 +410,7 @@ class DistgitBugzillaSync(ToddlerBase):
owner = project["poc"]
# We need the active branches only once
active_branches = self.bodhi.get_active_branches()
# Check if the project is retired in PDC, and if so set assignee to orphan.
# Check if the project is retired in dist_git, and if so set assignee to orphan.
if self._is_retired(product, project, active_branches):
owner = "orphan"
products_retired[product] = True