[tor-commits] [stem/master] Fix a problem with a missing argument

atagar at torproject.org atagar at torproject.org
Thu Jul 16 01:28:59 UTC 2020


commit 05d67e3a819f82d2545c6e9039d39a8512c13686
Author: Illia Volochii <illia.volochii at 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()





More information about the tor-commits mailing list