From 0e307d8b52e6af17013157bd0c841d47a67dec9f Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Sun, 27 Mar 2011 10:34:27 +0100 Subject: [PATCH] Actually call the functions... Signed-off-by: Mark Hymers --- dak/generate_filelist.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dak/generate_filelist.py b/dak/generate_filelist.py index 81ce4c19..29847d0d 100755 --- a/dak/generate_filelist.py +++ b/dak/generate_filelist.py @@ -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) -- 2.39.2