From 1260052172fedbe38e37c492b60003e5212046fe Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Sat, 28 Mar 2015 16:43:35 -0400 Subject: [PATCH] cleanup docstring of OAuth1Session to fix a typo/usage error --- requests_oauthlib/oauth1_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests_oauthlib/oauth1_session.py b/requests_oauthlib/oauth1_session.py index ffb84fd6..3d129ac7 100644 --- a/requests_oauthlib/oauth1_session.py +++ b/requests_oauthlib/oauth1_session.py @@ -55,7 +55,7 @@ class OAuth1Session(requests.Session): What is the difference between OAuth1Session and OAuth1? - OAuth1Session actually uses OAuth1 internally and it's purpose is to assist + OAuth1Session actually uses OAuth1 internally and its purpose is to assist in the OAuth workflow through convenience methods to prepare authorization URLs and parse the various token and redirection responses. It also provide rudimentary validation of responses.