summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-12-10 16:55:53 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-12-10 16:55:53 +0000
commit87756520b17aa0cb79a881d9aba7b4c73bddbcae (patch)
tree5971eb7ba64ee1024a232a7a224673f199b6b8c8
parent5b6080369e7ee47b7d746685d264358c91d656bd (diff)
downloadgitpython-baserock/zuul-ci.tar.gz
Sometimes the message is "Total..." not "remote: Total..."baserock/zuul-ci
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index c1fc8078..69b6929c 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -515,7 +515,7 @@ class Remote(LazyMixin, Iterable):
fetch_info_lines = list()
for line in digest_process_messages(proc.stderr, progress):
if line.startswith('From') or line.startswith('remote: Total') or line.startswith('POST') \
- or line.startswith(' ='):
+ or line.startswith(' =') or line.startswith('Total'):
continue
elif line.startswith('warning:'):
print >> sys.stderr, line