For some reason, our vote label in reviews.py used a unicode en dash. Oops.
Fixes #34.
This commit is contained in:
parent
5a8b7ecc30
commit
03a231093f
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ class Votes(object):
|
|||
ABSTAIN = "0"
|
||||
PLUS_TWO = "+2"
|
||||
PLUS_ONE = "+1"
|
||||
MINUS_ONE = "−1"
|
||||
MINUS_TWO = "−2"
|
||||
MINUS_ONE = "-1"
|
||||
MINUS_TWO = "-2"
|
||||
|
||||
CHOICES = [
|
||||
(PLUS_TWO, _("+2 — Good proposal and I will argue for it to be accepted.")),
|
||||
|
|
Loading…
Reference in a new issue