Skip to content

fixed case where progress was no longer shown if a single error occured #1248

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixed case where progress was no longer shown if a single error occured
  • Loading branch information
mxrch committed May 21, 2021
commit 47f35d1ba2b9b75a9078592cf4c41728ac088793
2 changes: 1 addition & 1 deletion git/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def _parse_progress_line(self, line: AnyStr) -> None:
line_str = line
self._cur_line = line_str

if self.error_lines or self._cur_line.startswith(('error:', 'fatal:')):
if self._cur_line.startswith(('error:', 'fatal:')):
self.error_lines.append(self._cur_line)
return

Expand Down