From d12c1b590067292f0673013592602336ef3cfb90 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 16 Sep 2014 14:04:22 -0400 Subject: this is unnecessary for now --- ssh.py | 4 +--- 1 file changed, 1 insertion(+), 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" -- cgit v1.2.3-54-g00ecf