django-voting
django-voting copied to clipboard
SCORES tuples item order was wrong ..
Changed:
SCORES = ( (u'+1', +1), (u'-1', -1), )
to:
SCORES = ( (+1, u'+1'), (-1, u'-1'), )
Because the object wouldn't save otherwise.