gross TODO: fix this later

This commit is contained in:
Brian S. Stephan 2012-11-07 18:14:59 -06:00
parent 9ec74d0e35
commit fdc7a3d9a9
1 changed files with 10 additions and 8 deletions

View File

@ -328,14 +328,16 @@ class Twitter(Module):
output_channel = self._get_output_channel()
if since_id is not None and output_channel != '':
tweets = self.twit.GetFriendsTimeline(since_id=since_id)
tweets.reverse()
for tweet in tweets:
tweet_text = self._return_tweet_or_retweet_text(tweet=tweet, print_source=True)
self.sendmsg(self.connection, output_channel.encode('utf-8', 'ignore'), tweet_text)
# friends timeline printed, find the latest id
new_since_id = self._get_latest_tweet_id(tweets, since_id)
# TODO: make this an option in the settings, just
# disabled in code for now
#tweets = self.twit.GetFriendsTimeline(since_id=since_id)
#tweets.reverse()
#for tweet in tweets:
# tweet_text = self._return_tweet_or_retweet_text(tweet=tweet, print_source=True)
# self.sendmsg(self.connection, output_channel.encode('utf-8', 'ignore'), tweet_text)
#
## friends timeline printed, find the latest id
#new_since_id = self._get_latest_tweet_id(tweets, since_id)
tweets = self.twit.GetMentions(since_id=since_id)
tweets.reverse()