twitter: reverse the mentions list before printing

This commit is contained in:
Brian S. Stephan 2016-01-26 23:29:26 -06:00
parent 21941b3392
commit 2cee918fd9
1 changed files with 1 additions and 0 deletions

View File

@ -273,6 +273,7 @@ class Twitter(Plugin):
since_id = twittersettings.mentions_since_id
mentions = self.twit.get_mentions_timeline(since_id=since_id)
mentions.reverse()
for mention in mentions:
reply = self._return_tweet_or_retweet_text(tweet=mention, print_source=True)
self.bot.privmsg(out_chan, reply)