Skip to content

Commit 6acbf59

Browse files
committed
Update voting scripts for day 2
1 parent 50e61b5 commit 6acbf59

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

utils/generate_vote_emails.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
curr_registration_file = "/Users/wbland/mpi/meeting-details/2025-06-jun/2025-06-04-registration.csv"
2222
transition_orgs_file = "/Users/wbland/mpi/mpi-forum.github.io/_data/orgs.csv"
2323
# Make sure to use a pre-filled link here so it gets email out correctly
24-
voting_link = "https://docs.google.com/forms/d/e/1FAIpQLSeaS0ppyW9BVbFt57nb__0Q2mrrdeRobFJg6Ouk0uW_BztffQ/viewform?usp=pp_url&entry.661715895={name}&entry.795178664={org}&entry.535119709={id}"
24+
voting_link = "https://docs.google.com/forms/d/e/1FAIpQLSeFoCI0c4FIv1Ui7Iq8mkbPba6wEsqn1mF4jG_n66M005ggdA/viewform?usp=pp_url&entry.109270161={name}&entry.432336106={org}&entry.1621315545={id}"
2525

26-
vote_name = "June 2025 Day 1"
27-
closing_time = "12:30pm on June 04, 2025"
26+
vote_name = "June 2025 Day 2"
27+
closing_time = "12:30pm on June 05, 2025"
2828
time_zone = "US Central Time (UTC - 4)"
2929
subject_string = vote_name + " Voting Link"
3030

utils/generate_vote_form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def isEmpty(val):
2020
def main():
2121
year = "2025"
2222
month = "06"
23-
day = "1"
23+
day = "2"
2424
filename = """../_data/meetings/{year}/{month}/votes.csv""".format(year=year, month=month)
2525
votes_list = list(csv.DictReader(open(filename)));
2626

0 commit comments

Comments
 (0)