buildframework/helium/sf/python/pythoncore/lib/integration/ant.py
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- 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("    <file name=\"%s\">\n" % filename)
-                output.write("".join(map(lambda x: "        <component name=\"%s\"/>\n" % x, components_per_file[filename])))
+                output.write("".join(["        <component name=\"%s\"/>\n" % x for x in components_per_file[filename]]))
                 output.write("    </file>\n")
         output.write("</buildconflicts>\n")
         output.close()