commit 05d67e3a819f82d2545c6e9039d39a8512c13686 Author: Illia Volochii illia.volochii@gmail.com Date: Mon Apr 27 19:57:13 2020 +0300
Fix a problem with a missing argument --- stem/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stem/connection.py b/stem/connection.py index 5da92709..12330ca3 100644 --- a/stem/connection.py +++ b/stem/connection.py @@ -370,7 +370,7 @@ def _connect_auth(control_socket: stem.socket.ControlSocket, password: str, pass close_control_socket() return None
- return _connect_auth(control_socket, password, password_prompt, chroot_path, controller) + return _connect_auth(control_socket, password, password_prompt, chroot_path, controller, async_controller_thread) else: print(CONNECT_MESSAGES['needs_password']) close_control_socket()
tor-commits@lists.torproject.org