Index: git_cache.py |
diff --git a/git_cache.py b/git_cache.py |
index a55f48ff850c47011a63a58bfe77d839102c7cce..086b479b81b5680ce56b6742f6cf17a53b7a2720 100755 |
--- a/git_cache.py |
+++ b/git_cache.py |
@@ -265,9 +265,8 @@ class Mirror(object): |
try: |
tempdir = tempfile.mkdtemp() |
self.print('Downloading %s' % latest_checkout) |
- code, out, err = gsutil.check_call('cp', latest_checkout, tempdir) |
+ code = gsutil.call('cp', latest_checkout, tempdir) |
if code: |
- self.print('%s\n%s' % (out, err)) |
return False |
filename = os.path.join(tempdir, latest_checkout.split('/')[-1]) |