diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-05-24 15:55:40 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-05-24 15:55:40 +0200 |
commit | 7a8f96cc8a5135a0ece19e600da914dabca7d215 (patch) | |
tree | b1e67c028e1dce9693ffe4282d42f87bc628cb0a /git/cmd.py | |
parent | db44286366a09f1f65986db2a1c8b470fb417068 (diff) | |
download | gitpython-7a8f96cc8a5135a0ece19e600da914dabca7d215.tar.gz |
fix(cmd): don't catch progress handler exceptions
Fixes #435
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -113,12 +113,7 @@ def handle_process_output(process, stdout_handler, stderr_handler, finalizer): def _dispatch_single_line(line, handler): line = line.decode(defenc) if line and handler: - try: - handler(line) - except Exception: - # Keep reading, have to pump the lines empty nontheless - log.error("Line handler exception on line: %s", line, exc_info=True) - # end + handler(line) # end dispatch helper # end single line helper |