]> git.decadent.org.uk Git - dak.git/commitdiff
queue_report
authorJoerg Jaspert <joerg@debian.org>
Wed, 31 Dec 2008 12:40:22 +0000 (13:40 +0100)
committerJoerg Jaspert <joerg@debian.org>
Wed, 31 Dec 2008 12:40:22 +0000 (13:40 +0100)
fix "too many values to unpack", thanks to addition of changes filename for
the 822 output.

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

index 31aedaa979e145e1120b9bd83bf5cec3f2cf3be6..29d0788124082c672d84eebebca86670d2a8608d 100755 (executable)
@@ -485,7 +485,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) = entry
+                (source, 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"):
@@ -494,7 +494,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) = entry
+            (source, 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: