From: Bryan Clark Date: Wed, 24 Feb 2010 21:01:38 +0000 (-0800) Subject: fix the encoded_kwargs bug X-Git-Tag: twitter-1.3~10 X-Git-Url: https://jfr.im/git/z_archive/twitter.git/commitdiff_plain/374057c9205e199f082f5a0bb6dc3b36c35b1c08?hp=7985672c869426c961ea96565aa0d8695a63513d fix the encoded_kwargs bug --- diff --git a/twitter/api.py b/twitter/api.py index e2b013b..5472583 100644 --- a/twitter/api.py +++ b/twitter/api.py @@ -97,7 +97,7 @@ class TwitterCall(object): else: raise TwitterError( "Twitter sent status %i for URL: %s.%s using parameters: (%s)\ndetails: %s" %( - e.code, uri, self.format, encoded_kwargs, e.fp.read())) + e.code, uri, self.format, self.encoded_args, e.fp.read())) class Twitter(TwitterCall): """