diff options
author | Martin Fischer <martin@push-f.com> | 2022-07-17 09:40:51 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-07-17 09:40:51 +0200 |
commit | 3bfa766b16903a8e8e7b28738151de934668305a (patch) | |
tree | cbac533c724801985e2cb1fe79b70401b95323ec | |
parent | f70d46ac73c17d0da33193352296b60cfc14ae96 (diff) |
display post-vote after voting proposals
-rwxr-xr-x | proposals.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proposals.py b/proposals.py index 4acb6cc..86b9a8f 100755 --- a/proposals.py +++ b/proposals.py @@ -115,9 +115,9 @@ for page in find_proposals(): STATUSES = { 'voting': 0, - 'proposed': 1, - 'draft': 2, - 'post-vote': 3, + 'post-vote': 1, + 'proposed': 2, + 'draft': 3, 'approved': 4, 'inactive': 5, 'rejected': 6, |