]> git.decadent.org.uk Git - dak.git/commitdiff
Our log function expects a single list argument
authorMark Hymers <mhy@debian.org>
Sun, 27 Mar 2011 09:33:27 +0000 (10:33 +0100)
committerMark Hymers <mhy@debian.org>
Sun, 27 Mar 2011 09:33:27 +0000 (10:33 +0100)
Signed-off-by: Mark Hymers <mhy@debian.org>
dak/generate_filelist.py
dak/generate_packages_sources2.py

index 928a62d4fc75db08e3c494ca773b715fe40ce31e..81ce4c1953283dbfcd6812eb29a50a595c9b4e6f 100755 (executable)
@@ -179,24 +179,24 @@ def main():
                 if architecture not in suite.architectures:
                     pass
                 elif architecture.arch_string == 'source':
-                    log(writeSourceList(suite_id, component_id, Options['Incremental']))
+                    log([writeSourceList(suite_id, component_id, Options['Incremental'])])
                     #pool.apply_async(writeSourceList,
                     #    (suite_id, component_id, Options['Incremental']), callback=log)
                 elif architecture.arch_string == 'all':
-                    log(writeAllList, suite_id, component_id, 'deb', Options['Incremental'])
+                    log([writeAllList, suite_id, component_id, 'deb', Options['Incremental']])
                     #pool.apply_async(writeAllList,
                     #    (suite_id, component_id, architecture_id, 'deb',
                     #        Options['Incremental']), callback=log)
-                    log(writeAllList, suite_id, component_id, 'udeb', Options['Incremental'])
+                    log([writeAllList, suite_id, component_id, 'udeb', Options['Incremental']])
                     #pool.apply_async(writeAllList,
                     #    (suite_id, component_id, architecture_id, 'udeb',
                     #        Options['Incremental']), callback=log)
                 else: # arch any
-                    log(writeBinaryList, suite_id, component_id, architecture_id, 'deb', Options['Incremental'])
+                    log([writeBinaryList, suite_id, component_id, architecture_id, 'deb', Options['Incremental']])
                     #pool.apply_async(writeBinaryList,
                     #    (suite_id, component_id, architecture_id, 'deb',
                     #        Options['Incremental']), callback=log)
-                    log(writeBinaryList, suite_id, component_id, architecture_id, 'udeb', Options['Incremental'])
+                    log([writeBinaryList, suite_id, component_id, architecture_id, 'udeb', Options['Incremental']])
                     #pool.apply_async(writeBinaryList,
                     #    (suite_id, component_id, architecture_id, 'udeb',
                     #        Options['Incremental']), callback=log)
index e9128ac8dd6be7fef05258a60f92f1fa38a0a9cb..011bb3c0434921591b21e0bab8f8b6313f7c1d67 100755 (executable)
@@ -271,12 +271,12 @@ def main():
         if s.untouchable and not force:
             utils.fubar("Refusing to touch %s (untouchable and not forced)" % s.suite_name)
         for c in component_ids:
-            log(generate_sources(s.suite_id, c))
+            log([generate_sources(s.suite_id, c)])
             #pool.apply_async(generate_sources, [s.suite_id, c], callback=log)
             for a in s.architectures:
-                log(generate_sources(s.suite_id, c, a.arch_id, 'deb'))
+                log([generate_sources(s.suite_id, c, a.arch_id, 'deb')])
                 #pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'deb'], callback=log)
-                log(generate_sources(s.suite_id, c, a.arch_id, 'udeb'))
+                log([generate_sources(s.suite_id, c, a.arch_id, 'udeb')])
                 #pool.apply_async(generate_packages, [s.suite_id, c, a.arch_id, 'udeb'], callback=log)
 
     #pool.close()