projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31a351c
)
Fix broken parsing of new style retweets.
author
Ivo Wetzel
<ivo.wetzel@googlemail.com>
Sun, 7 Mar 2010 17:43:48 +0000
(11:43 -0600)
committer
Joshua Roesslein
<jroesslein@gmail.com>
Sun, 7 Mar 2010 17:43:48 +0000
(11:43 -0600)
tweepy/models.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/models.py
b/tweepy/models.py
index 947cd6d6d2571dce61a5897d747e32fd13c502b2..4dc67f9e3c6526b156955b9c792727709bfed52d 100644
(file)
--- a/
tweepy/models.py
+++ b/
tweepy/models.py
@@
-55,7
+55,7
@@
class Status(Model):
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