]> git.decadent.org.uk Git - dak.git/commitdiff
Actually call the functions...
authorMark Hymers <mhy@debian.org>
Sun, 27 Mar 2011 09:34:27 +0000 (10:34 +0100)
committerMark Hymers <mhy@debian.org>
Sun, 27 Mar 2011 09:34:27 +0000 (10:34 +0100)
Signed-off-by: Mark Hymers <mhy@debian.org>
dak/generate_filelist.py

index 81ce4c1953283dbfcd6812eb29a50a595c9b4e6f..29847d0d86ae9b4403cbf72816e2481092e5c2eb 100755 (executable)
@@ -183,20 +183,20 @@ def main():
                     #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)