diff options
| author | mxrch <kvwaljam@protonmail.ch> | 2021-05-21 14:17:07 +0200 |
|---|---|---|
| committer | mxrch <kvwaljam@protonmail.ch> | 2021-05-21 14:17:07 +0200 |
| commit | 47f35d1ba2b9b75a9078592cf4c41728ac088793 (patch) | |
| tree | bb6ab207f8df07123557901c1a3c403cd727b52d /git | |
| parent | b11bcfa3df4d0b792823930bffae126fd12673f7 (diff) | |
| download | gitpython-47f35d1ba2b9b75a9078592cf4c41728ac088793.tar.gz | |
fixed case where progress was no longer shown if a single error occured
Diffstat (limited to 'git')
| -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 |
