This commit is contained in:
Kevin Rode 2021-01-04 22:30:24 -05:00
parent aa5b4b0c14
commit c12a167795

View File

@ -295,7 +295,7 @@ def search_teams(search_string):
c.execute("SELECT team_json_string FROM teams WHERE name LIKE ?",(re.sub('[^A-Za-z0-9 %]+', '', f"%{search_string}%"),))
team_json_strings = c.fetchall()
conn.close()
print team_json_strings
print(team_json_strings)
conn.close()
return None