Added functionality to get retweets in the home timeline, fixing the missing tweet problem (partially)

This commit is contained in:
Anna 2010-04-11 00:42:44 -04:00
parent 3e41885bbe
commit 1c92c34dd9
2 changed files with 57 additions and 1 deletions

View file

@ -71,7 +71,7 @@ class MyTwitter():
def update_window(self):
if self.list is None or self.list == 'Home':
statuses = self.api.GetFriendsTimeline(self.username, count=self.num_entries)
statuses = self.api.GetHomeTimeline(count=self.num_entries)
elif self.list == '@' + self.username:
statuses = self.api.GetReplies()
else: