From def0f19f1e23c142063ebff1e8d3581495d84de0 Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Thu, 15 Jan 2009 15:35:41 +0000 Subject: [PATCH] Fix for show_new calling examine_package with correct "suite" Signed-off-by: Mike O'Connor --- dak/show_new.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dak/show_new.py b/dak/show_new.py index a576426e..f650f9aa 100755 --- a/dak/show_new.py +++ b/dak/show_new.py @@ -147,7 +147,7 @@ def do_pkg(changes_file): changes = Upload.pkg.changes changes["suite"] = copy.copy(changes["distribution"]) - + distribution = changes["distribution"].keys()[0] # Find out what's new new = queue.determine_new(changes, files, projectB, 0) @@ -169,12 +169,12 @@ def do_pkg(changes_file): html_header(changes["source"], filestoexamine) queue.check_valid(new) - examine_package.display_changes(changes['distribution'], Upload.pkg.changes_file) + examine_package.display_changes( distribution, Upload.pkg.changes_file) for fn in filter(lambda fn: fn.endswith(".dsc"), filestoexamine): - examine_package.check_dsc(changes['distribution'], fn) + examine_package.check_dsc(distribution, fn) for fn in filter(lambda fn: fn.endswith(".deb") or fn.endswith(".udeb"), filestoexamine): - examine_package.check_deb(changes['distribution'], fn) + examine_package.check_deb(distribution, fn) html_footer() if sys.stdout != stdout_fd: -- 2.39.2