X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fshow_new.py;h=e355c37f7f42c4a119fdbcc081b0aa573cd7a898;hb=b612f3da207fa0d75a5d3b204ac8f02bb244231a;hp=87bea79630d124a163973bb127fbca33b84a6c87;hpb=3a48d9bed2ff0984eee329153f4e158919a597ec;p=dak.git diff --git a/dak/show_new.py b/dak/show_new.py index 87bea796..e355c37f 100755 --- a/dak/show_new.py +++ b/dak/show_new.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Output html for packages in NEW +""" Output html for packages in NEW """ # Copyright (C) 2007 Joerg Jaspert # This program is free software; you can redistribute it and/or modify @@ -28,9 +28,9 @@ import copy, os, sys, time import apt_pkg import examine_package -import daklib.database as database -import daklib.queue as queue -import daklib.utils as utils +from daklib import database +from daklib import queue +from daklib import utils # Globals Cnf = None @@ -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: