diff --git a/project.py b/project.py index 691e0d9b..6c197017 100644 --- a/project.py +++ b/project.py @@ -2676,7 +2676,9 @@ class Project(object): # returned another error with the HTTP error code being 400 or above. # This return code only appears if -f, --fail is used. if verbose: - print('Server does not provide clone.bundle; ignoring.') + print('%s: Unable to retrieve clone.bundle; ignoring.' % self.name) + if output: + print('Curl output:\n%s', % output) return False elif curlret and not verbose and output: print('%s' % output, file=sys.stderr)