From 14e9349f48cdc6f779b430c5518b59c9406389b0 Mon Sep 17 00:00:00 2001 From: Diego Allen Date: Thu, 21 Aug 2014 21:07:59 -0400 Subject: [PATCH] Add missing comma in documentation code snippet --- docs/usage/basic_usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/basic_usage.rst b/docs/usage/basic_usage.rst index 4ed2a3f..84ffb08 100644 --- a/docs/usage/basic_usage.rst +++ b/docs/usage/basic_usage.rst @@ -22,7 +22,7 @@ Create a Twython instance with your application keys and the users OAuth tokens .. code-block:: python from twython import Twython - twitter = Twython(APP_KEY, APP_SECRET + twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) User Information