Skip to content

Commit

Permalink
Fix broken parsing of new style retweets.
Browse files Browse the repository at this point in the history
  • Loading branch information
BonsaiDen authored and joshthecoder committed Mar 7, 2010
1 parent 31a351c commit 125480c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tweepy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse(cls, api, json):
else:
setattr(status, k, v)
elif k == 'retweeted_status':
setattr(status, k, User.parse(api, v))
setattr(status, k, Status.parse(api, v))
else:
setattr(status, k, v)
return status
Expand Down

0 comments on commit 125480c

Please sign in to comment.