From 87756520b17aa0cb79a881d9aba7b4c73bddbcae Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Wed, 10 Dec 2014 16:55:53 +0000 Subject: Sometimes the message is "Total..." not "remote: Total..." --- git/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1