aboutsummaryrefslogtreecommitdiffstats
path: root/termcast_server/ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'termcast_server/ssh.py')
-rw-r--r--termcast_server/ssh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/termcast_server/ssh.py b/termcast_server/ssh.py
index 360c3f7..beffefe 100644
--- a/termcast_server/ssh.py
+++ b/termcast_server/ssh.py
@@ -199,8 +199,8 @@ class Server(paramiko.ServerInterface):
def check_channel_shell_request(self, channel):
return True
- def check_auth_password(self, username, password):
+ def check_auth_none(self, username):
return paramiko.AUTH_SUCCESSFUL
def get_allowed_auths(self, username):
- return "password"
+ return "none"