From 7304256ced8b15a84405f767a67739b112a28eed Mon Sep 17 00:00:00 2001 From: Lukas Pohlreich Date: Fri, 26 Sep 2014 12:31:22 +0200 Subject: [PATCH] Reversed sorting for tweets in list 'home' command returns tweets ordered from oldest to newest. This patch do same thing for 'list home' command --- rainbowstream/rainbow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('') -- 2.25.1