diff --git a/docs/user/authentication.rst b/docs/user/authentication.rst index 2779e9c8..58175623 100644 --- a/docs/user/authentication.rst +++ b/docs/user/authentication.rst @@ -67,7 +67,7 @@ library allows Requests users to easily make OAuth authenticated requests:: >>> url = 'https://api.twitter.com/1.1/account/verify_credentials.json' >>> auth = OAuth1('YOUR_APP_KEY', 'YOUR_APP_SECRET', - 'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET') + ... 'USER_OAUTH_TOKEN', 'USER_OAUTH_TOKEN_SECRET') >>> requests.get(url, auth=auth)