]> git.decadent.org.uk Git - dak.git/commitdiff
Fix for show_new calling examine_package with correct "suite"
authorMike O'Connor <stew@ries.debian.org>
Thu, 15 Jan 2009 15:35:41 +0000 (15:35 +0000)
committerMike O'Connor <stew@ries.debian.org>
Thu, 15 Jan 2009 15:35:41 +0000 (15:35 +0000)
Signed-off-by: Mike O'Connor <stew@ries.debian.org>
dak/show_new.py

index a576426e86ea1a2d198c66d520434e2a2558e1d2..f650f9aa03aae6271eee09fb6f8c42c6c296f603 100755 (executable)
@@ -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: