From c08d7cea8ec3f41eca25efde37a63f3b907372eb Mon Sep 17 00:00:00 2001 From: spot Date: Fri, 18 May 2007 14:20:51 -0500 Subject: latest=True --- scripts/find-hidden-packages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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']] = {} -- cgit