diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-05-22 09:02:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 09:02:14 +0800 |
commit | eae0e37c88a71a3b8ca816b820eed71fd1590f11 (patch) | |
tree | bb6ab207f8df07123557901c1a3c403cd727b52d | |
parent | b11bcfa3df4d0b792823930bffae126fd12673f7 (diff) | |
parent | 47f35d1ba2b9b75a9078592cf4c41728ac088793 (diff) | |
download | gitpython-eae0e37c88a71a3b8ca816b820eed71fd1590f11.tar.gz |
Merge pull request #1248 from mxrch/main
fixed case where progress was no longer shown if a single error occured
-rw-r--r-- | git/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py index 76aaee49..edbd5f1e 100644 --- a/git/util.py +++ b/git/util.py @@ -470,7 +470,7 @@ class RemoteProgress(object): 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 |