c.execute("""DELETE FROM data
WHERE user = %s AND machine = %s""" , (user, machine))
I have two variables that were sent with get (technically they were machine+user, and then I split the variable based on the plus), who were then respectively assigned to the variables machine and user.
Theoretically this script should work, correct? What am I doing incorrectly? It does not delete the record I wish it would, or any at all.