Change neutral vote to right arrow

This commit is contained in:
5225225
2016-01-10 09:57:23 +00:00
parent 20a17ec2b3
commit 6bd4773576

View File

@@ -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