From 6bd47735762a7a25c3cee38ca7f5dc16f5d09a2e Mon Sep 17 00:00:00 2001 From: 5225225 <5225225@users.noreply.github.com> Date: Sun, 10 Jan 2016 09:57:23 +0000 Subject: [PATCH] Change neutral vote to right arrow --- rtv/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtv/terminal.py b/rtv/terminal.py index 39da5b8..8f9857d 100644 --- a/rtv/terminal.py +++ b/rtv/terminal.py @@ -57,7 +57,7 @@ class Terminal(object): @property def neutral_arrow(self): - symbol = 'o' if self.ascii else '•' + symbol = '>' if self.ascii else '‣' attr = curses.A_BOLD return symbol, attr