From 8c2e872f742e7d3c64c7e0fdb85a5d711aff1970 Mon Sep 17 00:00:00 2001 From: Greg Soltis Date: Tue, 10 Jan 2012 11:47:56 -0800 Subject: Ignore progress lines from the git http backend that start w/ POST ... --- git/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/remote.py') diff --git a/git/remote.py b/git/remote.py index 5e4439fb..f44344ee 100644 --- a/git/remote.py +++ b/git/remote.py @@ -520,7 +520,7 @@ class Remote(LazyMixin, Iterable): # Skip some progress lines that don't provide relevant information fetch_info_lines = list() for line in digest_process_messages(proc.stderr, progress): - if line.startswith('From') or line.startswith('remote: Total'): + if line.startswith('From') or line.startswith('remote: Total') or line.startswitch('POST'): continue elif line.startswith('warning:'): print >> sys.stderr, line -- cgit v1.2.1