From: Samuel Marks Date: Mon, 29 Oct 2012 03:17:10 +0000 (+1100) Subject: Removed extra parantheses X-Git-Tag: twitter-1.9.1~10^2 X-Git-Url: https://jfr.im/git/z_archive/twitter.git/commitdiff_plain/0cde02549606816a4342d52dbe58d9b9af01e594?hp=d8441c0ab6960aa1b82f030a59e184007fb8946a Removed extra parantheses --- diff --git a/README b/README index 581afa8..e63b6f1 100644 --- a/README +++ b/README @@ -82,8 +82,9 @@ Examples:: # see "Authentication" section below for tokens and keys t = Twitter( - auth=OAuth(OAUTH_TOKEN, OAUTH_SECRET, - CONSUMER_KEY, CONSUMER_SECRET))) + auth=OAuth(OAUTH_TOKEN, OAUTH_SECRET, + CONSUMER_KEY, CONSUMER_SECRET) + ) # Get the public timeline t.statuses.public_timeline()