diff --git a/helios/models.py b/helios/models.py
index 4252d1693e0c113c1007f22b69260851a9883bff..1c17f155bdc51eef128815ae0d9534a9b2011533 100644
--- a/helios/models.py
+++ b/helios/models.py
@@ -1171,7 +1171,7 @@ class Trustee(HeliosModel):
   
   @classmethod
   def get_by_election(cls, election):
-    return cls.objects.filter(election = election)
+    return cls.objects.filter(election = election).order_by('id')
 
   @classmethod
   def get_by_uuid(cls, uuid):