Fixed the detailed results so that they return anonymized results in
[selectricity] / app / models / candidate.rb
1 class Candidate < ActiveRecord::Base
2   belongs_to :election
3
4   def <=>(other)
5     self.name <=> other.name 
6   end
7   
8   def to_s
9     name
10   end
11
12 end

Benjamin Mako Hill || Want to submit a patch?