From 388e949e83a728d09f27cc708d32badcc160971e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Aase?= Date: Mon, 31 Oct 2016 09:09:16 +0100 Subject: [PATCH] Formatted the example to fix the color highlighting --- docs/user/authentication.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)