From a13539884d2a7a0bd97403351486ea9d6478fd34 Mon Sep 17 00:00:00 2001 From: Eugen Pyvovarov Date: Wed, 10 Nov 2010 07:33:10 -0800 Subject: [PATCH] in get method we use *kwargs, that's why we need to provide named arguments to the function --- core_examples/update_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core_examples/update_status.py b/core_examples/update_status.py index 52113f1..1acc2b8 100644 --- a/core_examples/update_status.py +++ b/core_examples/update_status.py @@ -10,4 +10,4 @@ twitter = Twython() # OAuth ritual... -twitter.updateStatus("See how easy this was?") +twitter.updateStatus(status = "See how easy this was?")