aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ssh.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/ssh.py b/ssh.py
index 90733b3..ae83103 100644
--- a/ssh.py
+++ b/ssh.py
@@ -134,9 +134,7 @@ class Server(paramiko.ServerInterface):
return True
def check_auth_password(self, username, password):
- if password == "blah":
- return paramiko.AUTH_SUCCESSFUL
- return paramiko.AUTH_FAILED
+ return paramiko.AUTH_SUCCESSFUL
def get_allowed_auths(self, username):
return "password"