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 89df641 commit a1634dcCopy full SHA for a1634dc
git/util.py
@@ -386,7 +386,7 @@ def _parse_progress_line(self, line):
386
# handle
387
# Counting objects: 4, done.
388
# Compressing objects: 50% (1/2) \rCompressing objects: 100% (2/2) \rCompressing objects: 100% (2/2), done.
389
- self._cur_line = line
+ self._cur_line = line = line.decode('utf-8') if isinstance(line, bytes) else 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 []
0 commit comments