diff -r c7c26511138f -r 7c4a911dc066 buildframework/helium/sf/python/pythoncore/lib/integration/ant.py --- a/buildframework/helium/sf/python/pythoncore/lib/integration/ant.py Wed Jun 16 16:51:40 2010 +0300 +++ b/buildframework/helium/sf/python/pythoncore/lib/integration/ant.py Fri Aug 13 14:59:05 2010 +0300 @@ -46,7 +46,7 @@ for filename in components_per_file.keys(): if len(components_per_file[filename]) > 1: output.write(" \n" % filename) - output.write("".join(map(lambda x: " \n" % x, components_per_file[filename]))) + output.write("".join([" \n" % x for x in components_per_file[filename]])) output.write(" \n") output.write("\n") output.close()