summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspot <spot@localhost.localdomain>2007-05-18 14:20:51 -0500
committerspot <spot@localhost.localdomain>2007-05-18 14:20:51 -0500
commitc08d7cea8ec3f41eca25efde37a63f3b907372eb (patch)
treeca9bea09305a3fcf6ded378147d42f53f4a5b9a3
parent03c7ee1e13b54f9e264950c0f745b4e5f997fa08 (diff)
downloadreleng-c08d7cea8ec3f41eca25efde37a63f3b907372eb.tar.gz
releng-c08d7cea8ec3f41eca25efde37a63f3b907372eb.tar.xz
releng-c08d7cea8ec3f41eca25efde37a63f3b907372eb.zip
latest=True
-rwxr-xr-xscripts/find-hidden-packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/find-hidden-packages.py b/scripts/find-hidden-packages.py
index a15105b..d672035 100755
--- a/scripts/find-hidden-packages.py
+++ b/scripts/find-hidden-packages.py
@@ -92,7 +92,7 @@ def print_hidden_packages(session, tag, opts, pkg_list=None):
main_top = {} #latest by tag ordering
if opts['verbose']:
print "%s ..." % tag['name']
- tagged_pkgs = session.listTagged(tag['id'])
+ tagged_pkgs = session.listTagged(tag['id'], latest=True)
if opts['verbose']:
print " [%d packages]" % len(tagged_pkgs)
for pkg in tagged_pkgs:
@@ -108,7 +108,7 @@ def print_hidden_packages(session, tag, opts, pkg_list=None):
for ctag in comp_tags:
if opts['verbose']:
print "%s ..." % ctag['name']
- tagged_pkgs = session.listTagged(ctag[ctag_id_key])
+ tagged_pkgs = session.listTagged(ctag[ctag_id_key], latest=True)
if opts['verbose']:
print " [%d packages]" % len(tagged_pkgs)
comp_latest[ctag['name']] = {}