From: Lukas Pohlreich Date: Fri, 26 Sep 2014 10:31:22 +0000 (+0200) Subject: Reversed sorting for tweets in list X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7304256ced8b15a84405f767a67739b112a28eed;p=rainbowstream.git Reversed sorting for tweets in list 'home' command returns tweets ordered from oldest to newest. This patch do same thing for 'list home' command --- diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 7671143..c18fe15 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -903,7 +903,7 @@ def list_home(t): owner_screen_name=owner, count=c['LIST_MAX'], include_entities=False) - for tweet in res: + for tweet in reversed(res): draw(t=tweet) printNicely('')