summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-14 15:46:02 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-14 15:46:02 +0100
commitc24b2c96c3732fcd6d0677583feb9dab10f68d32 (patch)
tree293507aee581088068476fe5d4240fdbb1061705
parent57ae2754c566749a07b9aaa3faff8cd885c929fa (diff)
downloadybd-c24b2c96c3732fcd6d0677583feb9dab10f68d32.tar.gz
Fix error message
-rw-r--r--ybd/repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ybd/repos.py b/ybd/repos.py
index ee39fac..8225d54 100644
--- a/ybd/repos.py
+++ b/ybd/repos.py
@@ -201,7 +201,7 @@ def _checkout(name, repo, ref, checkout):
# removed --no-hardlinks, though.
if call(['git', 'clone', '--no-hardlinks', gitdir, checkout],
stdout=fnull, stderr=fnull):
- app.log(name, 'Git clone failed for', ref, exit=True)
+ app.log(name, 'Git clone failed for', gitdir, exit=True)
with app.chdir(checkout):
if call(['git', 'checkout', '--force', ref], stdout=fnull,