]> jfr.im git - z_archive/twitter.git/blobdiff - twitter/oauth_dance.py
bug fix for profile image API
[z_archive/twitter.git] / twitter / oauth_dance.py
index d6e93e36617b7fcff9c5baf26806bc74f6926016..17dbae6f44fce9981a6c7f768d53ceff8a23dc29 100644 (file)
@@ -21,13 +21,13 @@ def oauth_dance(app_name, consumer_key, consumer_secret, token_filename=None):
 
     Provide the name of your app in `app_name`, your consumer_key, and
     consumer_secret. This function will open a web browser to let the
-    user Allow your app to access their Twitter account. PIN
+    user allow your app to access their Twitter account. PIN
     authentication is used.
 
     If a token_filename is given, the oauth tokens will be written to
     the file.
     """
-    print(("Hi there! We're gonna get you all set up to use %s." % app_name))
+    print("Hi there! We're gonna get you all set up to use %s." % app_name)
     twitter = Twitter(
         auth=OAuth('', '', consumer_key, consumer_secret),
         format='', api_version=None)