From 3d8e54ed94c48f952f63ca428b06b5a6a646d4c3 Mon Sep 17 00:00:00 2001 From: Mathias Klette Date: Fri, 16 Sep 2011 17:48:59 +0200 Subject: [PATCH] fix: we are cloning not checking out --- lib/git_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.39.5