Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
brandosu committed Aug 24, 2024
1 parent f989548 commit e46dc3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload-staff.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ def sanitize_filename(full_name):
mdfile.write(f"name: {row[name]}\n")
mdfile.write(f"email: {row[email]}\n")
mdfile.write(f"pronouns: {row[pronouns].upper()}\n")
mdfile.write(f"photo: staff/{formatted_name}.jpg\n")
mdfile.write(f"photo: staff/{formatted_name}.jpeg\n")
if row[website]:
mdfile.write(f"website:{row[website]}\n")
mdfile.write(f"website: {row[website]}\n")
mdfile.write(f"bio: {row[bio]}\n")
mdfile.write(f"role: {row[role]}\n")
if formatted_name in leads:
Expand Down

0 comments on commit e46dc3f

Please sign in to comment.