From: Orakaro Date: Fri, 20 Jun 2014 16:43:04 +0000 (+0900) Subject: add linebreak after favorite X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=bb6d4e4ec140948a1e0f5c8685be46326183736e;p=rainbowstream.git add linebreak after favorite --- diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index e659175..b0373e1 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -537,6 +537,7 @@ def favorite(): t.favorites.create(_id=tid, include_entities=False) printNicely(green('Favorited.')) draw(t.statuses.show(id=tid), iot=g['iot']) + printNicely('') except: printNicely(red('Omg some syntax is wrong.')) @@ -582,6 +583,7 @@ def unfavorite(): t.favorites.destroy(_id=tid) printNicely(green('Okay it\'s unfavorited.')) draw(t.statuses.show(id=tid), iot=g['iot']) + printNicely('') except: printNicely(red('Sorry I can\'t unfavorite this tweet for you.'))