From 7df02eea47a7759ddcea0b8143fc13ccab4bed80 Mon Sep 17 00:00:00 2001
From: Krish M <krish94@uab.edu>
Date: Fri, 15 Apr 2022 10:47:02 -0500
Subject: [PATCH] removed typo for affiliate

---
 app/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/__init__.py b/app/__init__.py
index 890e8ef..653dddf 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -40,7 +40,7 @@ def create_app(config_name):
     @app.route('/', methods=['GET', 'POST']) # initial route to display the reg page
     def index():
 
-        valid_eppa = ["faculty", "staff", "student", "affliate"]
+        valid_eppa = ["faculty", "staff", "student", "affiliate"]
 
         if 'uid' not in session:
             session['uid']=str(uuid.uuid4())
-- 
GitLab