]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
add missing map func call
authorRobin Wittler <robin.wittler@profitbricks.com>
Wed, 3 Aug 2011 11:41:32 +0000 (13:41 +0200)
committerRobin Wittler <robin.wittler@profitbricks.com>
Wed, 3 Aug 2011 11:41:32 +0000 (13:41 +0200)
testgit_build.py

index c13ac5c1e7b8a6e41e195ecbbd68829811bc3d9f..f5901f32f123ff8be7b38d024ff2ba4d5b56c753 100755 (executable)
@@ -114,8 +114,10 @@ if __name__ == '__main__':
     logger.debug(
             'Initialised with that items: %s'
             ', '.join(
-                lambda x: '%s => %s' %(x[0], x[1]),
-                os.environ.iteritems()
+                map(
+                    lambda x: '%s => %s' %(x[0], x[1]),
+                    os.environ.iteritems()
+                )
             )
     )
     if git_helper.git_clone_remote_repository(GIT_REPO_PATH, GIT_TARGET_DIR):