Skip to content

Commit

Permalink
update db pull to make emails lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
iamzoltan committed Jul 4, 2024
1 parent 0dbef9f commit 9c97b93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ def get_pod_data_from_db(connection):
pod_time_slot = row[3]
lead_ta_fn = row[4]
lead_ta_ln = row[5]
lead_ta_email = row[6]
lead_ta_email = row[6].lower()
ta_fn = row[7]
ta_ln = row[8]
ta_email = row[9]
ta_email = row[9].lower()
project_ta_fn = row[10]
project_ta_ln = row[11]
project_ta_email = row[12]
project_ta_email = row[12].lower()
student_fn = row[13]
student_ln = row[14]
student_email = row[15]
student_email = row[15].lower()

# Verify all necessary data for names
# TODO: verify the rest of the data
Expand Down

0 comments on commit 9c97b93

Please sign in to comment.