summaryrefslogtreecommitdiff
path: root/git/util.py
diff options
context:
space:
mode:
authormxrch <kvwaljam@protonmail.ch>2021-05-21 14:17:07 +0200
committermxrch <kvwaljam@protonmail.ch>2021-05-21 14:17:07 +0200
commit47f35d1ba2b9b75a9078592cf4c41728ac088793 (patch)
treebb6ab207f8df07123557901c1a3c403cd727b52d /git/util.py
parentb11bcfa3df4d0b792823930bffae126fd12673f7 (diff)
downloadgitpython-47f35d1ba2b9b75a9078592cf4c41728ac088793.tar.gz
fixed case where progress was no longer shown if a single error occured
Diffstat (limited to 'git/util.py')
-rw-r--r--git/util.py2
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