tokiospg commited on
Commit
8ecbf7c
·
verified ·
1 Parent(s): 0ab266b

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -293,7 +293,7 @@ if st.session_state.username == "admin":
293
  if target_u:
294
  conn = db.get_connection()
295
  c = conn.cursor()
296
- c.execute("SELECT gemini_key, tavily_key, email_user, email_pass_enc FROM users WHERE username=?", (target_u,))
297
  curr = c.fetchone()
298
  conn.close()
299
 
 
293
  if target_u:
294
  conn = db.get_connection()
295
  c = conn.cursor()
296
+ c.execute("SELECT gemini_key, tavily_key, email_user, email_pass_enc FROM users WHERE username=%s", (target_u,))
297
  curr = c.fetchone()
298
  conn.close()
299