'ann' and 'approved' were swapped in the next states table, bug

noticed by Amy Vezza
 - Legacy-Id: 3950
This commit is contained in:
Ole Laursen 2012-02-22 18:10:48 +00:00
parent 4566bd7941
commit 934e4f7d0a

View file

@ -73,10 +73,10 @@ for s in State.objects.filter(type=draft_iesg_type):
"lc": ("writeupw", "goaheadw"),
"writeupw": ("goaheadw", ),
"goaheadw": ("iesg-eva", ),
"iesg-eva": ("nopubadw", "defer", "ann"),
"iesg-eva": ("nopubadw", "defer", "approved"),
"defer": ("iesg-eva", ),
"ann": ("approved", ),
"approved": ("rfcqueue", ),
"approved": ("ann", ),
"ann": ("rfcqueue", ),
"rfcqueue": ("pub", ),
"pub": ("dead", ),
"nopubadw": ("nopubanw", ),