X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fshow_new.py;h=f650f9aa03aae6271eee09fb6f8c42c6c296f603;hb=af486e867c2809515c09ae4f854a95355112010e;hp=4b485f2669ad7e0a642ff2d3712809f5a7b4b79f;hpb=16f731a893f0ba036a995c25b8b5f3490394070e;p=dak.git diff --git a/dak/show_new.py b/dak/show_new.py index 4b485f26..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(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(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(fn) + examine_package.check_deb(distribution, fn) html_footer() if sys.stdout != stdout_fd: