From: Jalem Raj Rohit Date: Thu, 11 Jun 2015 11:15:01 +0000 (+0530) Subject: Do not need tweepy in the line. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=16fc0350b854bedcf9e1bf7d238edca7093ec9e4;p=tweepy.git Do not need tweepy in the line. --- diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 98dd498..abafd8c 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -50,7 +50,7 @@ from Twitter which we can then use inside our application. For example the following code returns to us an User model:: # Get the User object for twitter... - user = tweepy.api.get_user('twitter') + user = api.get_user('twitter') Models contain the data and some helper methods which we can then use::