1 parent db44286 commit 7a8f96cCopy full SHA for 7a8f96c
doc/source/changes.rst
@@ -2,6 +2,12 @@
2
Changelog
3
=========
4
5
+2.0.3 - Fixes
6
+=============
7
+
8
+* Fix: progress handler exceptions are not caught anymore, which would usually just hide bugs
9
+ previously.
10
11
2.0.2 - Fixes
12
=============
13
git/cmd.py
@@ -113,12 +113,7 @@ def _read_lines_from_fno(fno, last_buf_list):
113
def _dispatch_single_line(line, handler):
114
line = line.decode(defenc)
115
if line and handler:
116
- try:
117
- handler(line)
118
- except Exception:
119
- # Keep reading, have to pump the lines empty nontheless
120
- log.error("Line handler exception on line: %s", line, exc_info=True)
121
- # end
+ handler(line)
122
# end dispatch helper
123
# end single line helper
124
0 commit comments