For some reason, our vote label in reviews.py used a unicode en dash. Oops.

Fixes #34.
This commit is contained in:
Christopher Neugebauer 2016-08-02 10:53:53 +10:00
parent 5a8b7ecc30
commit 03a231093f

View file

@ -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.")),