From cca4b8bc3fc91bd313e12700b05505b95e6d936e Mon Sep 17 00:00:00 2001 From: Benjamin Kerensa Date: Sun, 10 Mar 2013 15:42:22 -0700 Subject: [PATCH 1/2] Correct spelling in some strings --- libssh2/session.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libssh2/session.py b/libssh2/session.py index 6dd12ec..93d958e 100644 --- a/libssh2/session.py +++ b/libssh2/session.py @@ -187,10 +187,10 @@ def session_method_pref(self, method_type, pref): def session_methods(self): """ - Returns dictionnary with the current actives algorithms. + Returns dictionary with the current actives algorithms. CS keys is Client to Server and SC keys is Server to Client. - @return: dictionnary with actual method negociated + @return: dictionary with actual method negotiated @rtype: dict """ return self._session.session_methods() @@ -261,7 +261,7 @@ def startup(self, sock): def userauth_authenticated(self): """ - Returns authentification status for the given session. + Returns authentication status for the given session. @return: non-zero if authenticated or 0 if not @rtype: int @@ -270,7 +270,7 @@ def userauth_authenticated(self): def userauth_list(self, username): """ - Lists the authentification methods supported by a server. + Lists the authentication methods supported by a server. @param username: username which will be used while authenticating @type username: str From 615fb260bdbd49a4dd1eda0bbab427e7df8e3ea3 Mon Sep 17 00:00:00 2001 From: Benjamin Kerensa Date: Sun, 10 Mar 2013 15:43:11 -0700 Subject: [PATCH 2/2] Add self to contributor list --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 8670951..a0eb4aa 100644 --- a/AUTHORS +++ b/AUTHORS @@ -9,3 +9,4 @@ Christophe Grosjean Cyril Elkaim Marcin Szewczyk +Benjamin Kerensa