Ok, trying s instead of d, even though that's technically not correct

This commit is contained in:
Bradley Bickford 2023-11-24 20:16:03 -05:00
parent 61b617db04
commit 41683fe098

View File

@ -42,7 +42,7 @@ mydb = mysql.connector.connect(
cursor = mydb.cursor()
cursor.execute("SELECT call_start_time FROM call_states WHERE call_id = %d", [int(args.callid)])
cursor.execute("SELECT call_start_time FROM call_states WHERE call_id = %s", [args.callid])
call_start_time = cursor.fetchall()