]> git.decadent.org.uk Git - dak.git/commitdiff
Fix barry breaking new.html
authorBarry deFreese <bdefreese@ries.debian.org>
Thu, 17 Dec 2009 15:49:24 +0000 (15:49 +0000)
committerBarry deFreese <bdefreese@ries.debian.org>
Thu, 17 Dec 2009 15:49:24 +0000 (15:49 +0000)
dak/queue_report.py

index 6843bdd7618c80b3b4702ae6218dc6636a71b301..f1d805650b1397c4b06e0f23591f2c7f0fadd020 100755 (executable)
@@ -504,7 +504,7 @@ def process_changes_files(changes_files, type, log):
             source_count = len(per_source_items)
             table_header(type.upper(), source_count, total_count)
             for entry in entries:
-                (source, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, undef) = entry
+                (source, binary, version_list, arch_list, note, last_modified, maint, distribution, closes, fingerprint, sponsor, changedby, undef) = entry
                 table_row(source, version_list, arch_list, time_pp(last_modified), maint, distribution, closes, fingerprint, sponsor, changedby)
             table_footer(type.upper())
     elif not Cnf.has_key("Queue-Report::Options::822"):
@@ -513,7 +513,7 @@ def process_changes_files(changes_files, type, log):
 
         msg = ""
         for entry in entries:
-            (source, version_list, arch_list, note, last_modified, undef, undef, undef, undef, undef, undef, undef) = entry
+            (source, binary, version_list, arch_list, note, last_modified, undef, undef, undef, undef, undef, undef, undef) = entry
             msg += format % (source, version_list, arch_list, note, time_pp(last_modified))
 
         if msg: