diff --git a/ietf/community/rules.py b/ietf/community/rules.py
index 68218e99d..b1b8f903f 100644
--- a/ietf/community/rules.py
+++ b/ietf/community/rules.py
@@ -34,7 +34,7 @@ class WgAsociatedRule(RuleManager):
         return Document.objects.filter(type='draft', states__slug='active').filter(group__acronym=self.value).distinct()
 
     def options(self):
-        return [(i.acronym, "%s — %s"%(i.acronym, i.name)) for i in Group.objects.filter(type='wg', state='active').distinct().order_by('name')]
+        return [(i.acronym, "%s — %s"%(i.acronym, i.name)) for i in Group.objects.filter(type='wg', state='active').distinct().order_by('acronym')]
 
     def show_value(self):
         try: