From: Mathias Klette Date: Fri, 16 Sep 2011 15:48:59 +0000 (+0200) Subject: fix: we are cloning not checking out X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=3d8e54ed94c48f952f63ca428b06b5a6a646d4c3;p=profitbricks%2Fjenkins-build-scripts.git fix: we are cloning not checking out --- diff --git a/lib/git_helper.py b/lib/git_helper.py index 13cd854..1ece9f8 100644 --- a/lib/git_helper.py +++ b/lib/git_helper.py @@ -67,7 +67,7 @@ def git_clone_remote_repository(url, destination): %(' '.join(cmd), ret, error_str) ) return False - logger.debug('repository %s checked out into %s' %(url, destination)) + logger.debug('repository %s cloned into %s' %(url, destination)) return True def git_new_branch_from(branch_name, from_branch):