From: Joshua Roesslein Date: Mon, 24 May 2010 03:35:38 +0000 (-0500) Subject: Documentation fix in oauth tutorial. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f7c8f6da31ba3a45c87880427b0db42bf5a6fb77;p=tweepy.git Documentation fix in oauth tutorial. --- diff --git a/doc/auth_tutorial.rst b/doc/auth_tutorial.rst index dff8199..5765a3a 100644 --- a/doc/auth_tutorial.rst +++ b/doc/auth_tutorial.rst @@ -104,7 +104,7 @@ URL request. Here is a pseudo example of storing the request token in a session:: session.set('request_token', (auth.request_token.key, - auth.request_token.secret) + auth.request_token.secret)) So now we can redirect the user to the URL returned to us earlier from the get_authorization_url() method.