Skip to content

Commit 7e188d2

Browse files
committed
Fix needed-to-pas calculation to use new representation of area directors. Fixes ietf-tools#1587. Commit ready to merge
- Legacy-Id: 8922
1 parent 468ea20 commit 7e188d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def can_adopt_draft(user, doc):
9191

9292
def two_thirds_rule( recused=0 ):
9393
# For standards-track, need positions from 2/3 of the non-recused current IESG.
94-
active = Role.objects.filter(name="ad",group__state="active").count()
94+
active = Role.objects.filter(name="ad",group__type="area",group__state="active").count()
9595
return int(math.ceil((active - recused) * 2.0/3.0))
9696

9797
def needed_ballot_positions(doc, active_positions):

0 commit comments

Comments
 (0)