cleanup removed options

This commit is contained in:
Tomas Kopecek 2021-04-12 09:26:38 +02:00
parent 02ea2901e2
commit 3fed02c8ad
5 changed files with 10 additions and 12 deletions

View file

@ -2580,8 +2580,7 @@ def repo_init(tag, task_id=None, with_src=False, with_debuginfo=False, event=Non
latest = not tinfo['extra'].get('repo_include_all', False)
# Note: the repo_include_all option is not recommended for common use
# see https://pagure.io/koji/issue/588 for background
rpms, builds = readTaggedRPMS(tag_id, event=event_id, inherit=True, latest=latest,
with_owners=False)
rpms, builds = readTaggedRPMS(tag_id, event=event_id, inherit=True, latest=latest)
groups = readTagGroups(tag_id, event=event_id, inherit=True)
blocks = [pkg for pkg in readPackageList(tag_id, event=event_id, inherit=True,
with_owners=False).values()
@ -11292,12 +11291,12 @@ class RootExports(object):
task.setPriority(priority, recurse=recurse)
def listTagged(self, tag, event=None, inherit=False, prefix=None, latest=False, package=None,
owner=None, type=None, with_owners=True):
owner=None, type=None):
"""List builds tagged with tag"""
# lookup tag id
tag = get_tag(tag, strict=True, event=event)['id']
results = readTaggedBuilds(tag, event, inherit=inherit, latest=latest, package=package,
owner=owner, type=type, with_owners=with_owners)
owner=owner, type=type)
if prefix:
prefix = prefix.lower()
results = [build for build in results