Skip to content

Commit

Permalink
Fix typo in example code
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Oct 19, 2017
1 parent 6c465f7 commit e36eba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -324,7 +324,7 @@ if not os.path.exists(MY_TWITTER_CREDS):
oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)

twitter = Twitter(auth=OAuth(
oauth_token, oauth_token_secret, CONSUMER_KEY, CONSUMER_SECRET))
oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))

# Now work with Twitter
twitter.statuses.update(status='Hello, world!')

0 comments on commit e36eba7

Please sign in to comment.