diff options
author | Adam Coldrick <adam.coldrick@codethink.co.uk> | 2014-12-10 16:55:53 +0000 |
---|---|---|
committer | Adam Coldrick <adam.coldrick@codethink.co.uk> | 2014-12-10 16:55:53 +0000 |
commit | 87756520b17aa0cb79a881d9aba7b4c73bddbcae (patch) | |
tree | 5971eb7ba64ee1024a232a7a224673f199b6b8c8 /git/remote.py | |
parent | 5b6080369e7ee47b7d746685d264358c91d656bd (diff) | |
download | gitpython-baserock/zuul-ci.tar.gz |
Sometimes the message is "Total..." not "remote: Total..."baserock/zuul-ci
Diffstat (limited to 'git/remote.py')
-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 |