Skip to content

Commit 278b30c

Browse files
committed
Merged in [8922] from rjsparks@nostrum.com:
Fix needed-to-pas calculation to use new representation of area directors. Fixes ietf-tools#1587. - Legacy-Id: 8974 Note: SVN reference [8922] has been migrated to Git commit 7e188d2
2 parents 7bb3744 + 7e188d2 commit 278b30c

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)