diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-24 09:50:03 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-24 09:50:03 -0800 |
commit | 74af60803ff7762fd5bfbc654d5b23e7c3b71492 (patch) | |
tree | 9628b6b5c316b9bef63733faea83055bbfd90ec7 | |
parent | c23579526b4a3c05e6d20bf92074ea0c8c37751d (diff) |
s/paramiko/Paramiko/
-rw-r--r-- | paramiko/server.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/server.py b/paramiko/server.py index e7d37849..98db5dfb 100644 --- a/paramiko/server.py +++ b/paramiko/server.py @@ -27,10 +27,10 @@ from paramiko import util class ServerInterface (object): """ - This class defines an interface for controlling the behavior of paramiko + This class defines an interface for controlling the behavior of Paramiko in server mode. - Methods on this class are called from paramiko's primary thread, so you + Methods on this class are called from Paramiko's primary thread, so you shouldn't do too much work in them. (Certainly nothing that blocks or sleeps.) """ @@ -161,7 +161,7 @@ class ServerInterface (object): options it has for continuing the authentication.) Note that you don't have to actually verify any key signtature here. - If you're willing to accept the key, paramiko will do the work of + If you're willing to accept the key, Paramiko will do the work of verifying the client's signature. The default implementation always returns `.AUTH_FAILED`. |