In handle_process_output don't forward finalizer result by EliahKagan · Pull Request #1788 · gitpython-developers/GitPython
This function returns once the finalizer returns.
:return: Result of finalizer :param process: :class:`subprocess.Popen` instance :param stdout_handler: f(stdout_line_string), or None :param stderr_handler: f(stderr_line_string), or None
if finalizer: return finalizer(process) else: return None finalizer(process)
def dashify(string: str) -> str: