X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fgenerate_filelist.py;fp=dak%2Fgenerate_filelist.py;h=81ce4c1953283dbfcd6812eb29a50a595c9b4e6f;hb=a52c847ce964432d13bb30455af3b9bad0e55002;hp=928a62d4fc75db08e3c494ca773b715fe40ce31e;hpb=452673ed0ed455adc46eae17a073df6466892cd4;p=dak.git diff --git a/dak/generate_filelist.py b/dak/generate_filelist.py index 928a62d4..81ce4c19 100755 --- a/dak/generate_filelist.py +++ b/dak/generate_filelist.py @@ -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)