From 2642d6903cfbf579f791e98dceb2d5f4aceefa76 Mon Sep 17 00:00:00 2001 From: ryanmcgrath Date: Mon, 13 Sep 2010 02:21:52 -0700 Subject: [PATCH] Migrated from status-methods v8 --- Status-Methods.textile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Status-Methods.textile b/Status-Methods.textile index e5ec99c..7743bd5 100644 --- a/Status-Methods.textile +++ b/Status-Methods.textile @@ -13,10 +13,10 @@ Parameters
 
-import tango
+import twython
 
 # Instantiate with Basic (HTTP) Authentication
-twitter = tango.setup(authtype="Basic", username="example", password="example")
+twitter = twython.setup(authtype="Basic", username="example", password="example")
 twitter.updateStatus("See how easy this was?")
 
 
@@ -32,10 +32,10 @@ Parameters
 
-import tango
+import twython
 
 # Instantiate with Basic (HTTP) Authentication
-twitter = tango.setup(authtype="Basic", username="example", password="example")
+twitter = twython.setup(authtype="Basic", username="example", password="example")
 twitter.destroyStatus("12344545")
 
 
@@ -50,10 +50,10 @@ Parameters
 
-import tango
+import twython
 
 # Instantiate with no Auth - Auth might be needed if user is protected
-twitter = tango.setup()
+twitter = twython.setup()
 status = twitter.showStatus("123")
 
 print status["text"]