diff options
Diffstat (limited to 'git')
-rw-r--r-- | git/remote.py | 2 |
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 |