Skip to content

Commit

Permalink
Fixed bug with error reporting in the api.
Browse files Browse the repository at this point in the history
  • Loading branch information
pykler committed Oct 13, 2009
1 parent d61a603 commit 98d522c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitter/api.py
Expand Up @@ -97,7 +97,7 @@ def __call__(self, **kwargs):
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):
"""
Expand Down

0 comments on commit 98d522c

Please sign in to comment.