From: Robin Wittler Date: Wed, 3 Aug 2011 11:41:32 +0000 (+0200) Subject: add missing map func call X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=1cde0e1685c4a80d1b85e1879d050467945734a2;p=profitbricks%2Fjenkins-build-scripts.git add missing map func call --- diff --git a/testgit_build.py b/testgit_build.py index c13ac5c..f5901f3 100755 --- a/testgit_build.py +++ b/testgit_build.py @@ -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):