File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -513,14 +513,15 @@ def update(self, **kwargs):
513513 def _get_fetch_info_from_stderr (self , proc , progress ):
514514 # skip first line as it is some remote info we are not interested in
515515 output = IterableList ('name' )
516-
517-
516+
517+
518518 # lines which are no progress are fetch info lines
519519 # this also waits for the command to finish
520520 # Skip some progress lines that don't provide relevant information
521521 fetch_info_lines = list ()
522522 for line in digest_process_messages (proc .stderr , progress ):
523- if line .startswith ('From' ) or line .startswith ('remote: Total' ) or line .startswith ('POST' ):
523+ if line .startswith ('From' ) or line .startswith ('remote: Total' ) or line .startswith ('POST' ) \
524+ or line .startswith (' =' ):
524525 continue
525526 elif line .startswith ('warning:' ):
526527 print >> sys .stderr , line
You can’t perform that action at this time.
0 commit comments