diff options
author | Yobmod <yobmod@gmail.com> | 2021-08-09 18:02:25 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-08-09 18:02:25 +0100 |
commit | 5835f013e88d5e29fa73fe7eac8f620cfd3fc0a1 (patch) | |
tree | 179478799e6c9f889e4f33738689f8f783e0a762 /git/cmd.py | |
parent | c35ab1dd61e91bd55d939302d1f02e1c58985826 (diff) | |
download | gitpython-5835f013e88d5e29fa73fe7eac8f620cfd3fc0a1.tar.gz |
Update changelog and version
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -147,6 +147,8 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen, # for t in threads: t.join(timeout=timeout) + if t.is_alive(): + raise RuntimeError(f"Thread join() timed out in cmd.handle_process_output(). Timeout={timeout} seconds") if finalizer: return finalizer(process) |