You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If kill_after_timeout is used and the timeout is triggered it sets stderr_value to a string with a message the the command timed out. The code immediately below tries to strip new lines off stderr_value with endswith(b"\n") which fails with TypeError: endswith first arg must be str or a tuple of str, not bytes.
If kill_after_timeout is used and the timeout is triggered it sets stderr_value to a string with a message the the command timed out. The code immediately below tries to strip new lines off stderr_value with endswith(b"\n") which fails with
TypeError: endswith first arg must be str or a tuple of str, not bytes
.Using GitPython 2.1.5 on Python 3.4.5
The text was updated successfully, but these errors were encountered: