From: Orakaro Date: Mon, 7 Jul 2014 14:26:41 +0000 (+0900) Subject: add notice X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=595fdb16db3c29c26b391724d4c83a009bfc078f;p=rainbowstream.git add notice --- diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 584d8e2..f8cc9bf 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -329,7 +329,10 @@ def quote(): text = tweet['text'] quote = '\"@' + screen_name + ': ' + text + '\"' quote = quote.encode('utf8') - printNicely(light_magenta('Compose mode:')) + notice = light_magenta('Compose mode ') + notice += light_yellow('(Enter nothing will cancel the quote)') + notice += light_magenta(':') + printNicely(notice) extra = raw_input(quote) if extra: t.statuses.update(status=quote+extra)