From fc8a8377264a4925033bb8583e04a8a134b3d424 Mon Sep 17 00:00:00 2001 From: Orakaro Date: Tue, 26 Nov 2019 22:55:38 +0900 Subject: [PATCH] Fix blank line --- rainbowstream/rainbow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 822f3bb..a7007cc 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -341,7 +341,8 @@ def poll(): g['since_id'] = result[0]['id'] for tweet in reversed(result): draw(t=tweet) - printNicely('') + if result: + printNicely('') def home(): """ -- 2.25.1