]> git.decadent.org.uk Git - dak.git/commitdiff
show_new
authorJoerg Jaspert <joerg@debian.org>
Thu, 15 Jan 2009 08:52:05 +0000 (09:52 +0100)
committerJoerg Jaspert <joerg@debian.org>
Thu, 15 Jan 2009 08:52:05 +0000 (09:52 +0100)
and the same goes for check_dsc/check_deb

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/show_new.py

index e87ca89233f19a392707b3a14f3767593ad8b707..a576426e86ea1a2d198c66d520434e2a2558e1d2 100755 (executable)
@@ -172,9 +172,9 @@ def do_pkg(changes_file):
         examine_package.display_changes(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(changes['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(changes['distribution'], fn)
 
         html_footer()
         if sys.stdout != stdout_fd: