Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687c8f0 commit 3bf002eCopy full SHA for 3bf002e
git/util.py
@@ -390,21 +390,6 @@ def _parse_progress_line(self, line):
390
if len(self.error_lines) > 0 or self._cur_line.startswith(('error:', 'fatal:')):
391
self.error_lines.append(self._cur_line)
392
return []
393
- elif 'up to date' in self._cur_line:
394
- # Checking this way instead of startswith, because debugging for
395
- # startswith(' = [up to date]') is going to be a major pain if just
396
- # a single space or bracket changes.
397
-
398
- # Strip the initial ' = [up to date]' from the line
399
- message_string = line.split('date]', 1)[-1]
400
401
- # Trim whitespace
402
- message_string = ' '.join(message_string.split())
403
404
- self.update(0,
405
- 1,
406
407
- message_string)
408
409
sub_lines = line.split('\r')
410
failed_lines = []
0 commit comments