django-voting icon indicating copy to clipboard operation
django-voting copied to clipboard

SCORES tuples item order was wrong ..

Open h3 opened this issue 13 years ago • 0 comments

Changed:

SCORES = ( (u'+1', +1), (u'-1', -1), )

to:

SCORES = ( (+1, u'+1'), (-1, u'-1'), )

Because the object wouldn't save otherwise.

h3 avatar Sep 08 '11 03:09 h3