Partially fixed names in DMs

This commit is contained in:
Anna 2010-04-21 10:20:03 -04:00
parent 5c7798398b
commit 26af23b37c
2 changed files with 3 additions and 2 deletions

3
TODO
View File

@ -11,5 +11,6 @@ features:
bugs: bugs:
* Direct Messages have no names * Direct Messages have no names, only screen names (may not be fixable without
considerable tweets to python-twitter)
* single-tweet tabs will not persist properly * single-tweet tabs will not persist properly

View File

@ -433,7 +433,7 @@ class MyTwitter():
status = Status() status = Status()
status.id = dm.id status.id = dm.id
status.user = User() status.user = User()
status.user.screen_name = dm.sender.screen_name status.user.screen_name = dm.sender_screen_name
status.user.name = dm.sender.name status.user.name = dm.sender.name
status.created_at = dm.created_at status.created_at = dm.created_at
status.text = dm.text status.text = dm.text